- 2020/06/28
- 4,553
- 1,422
- $12,560
感谢亲爱的会员 @jessy提交了一个新的资源:Pre-filled New Thread Message with Query Parameter-允许你定义一条消息作为新帖子的内容
Read more about this resource...创建一个文件在这里:/js/custom/prefill.js,内容为:
```javascript
// prefill.js
```
注意:实际代码应根据具体需求编写,这里提供了一个基本的示例。
```
JavaScript:XF.ready(() => { const params = new URLSearchParams(window.location.search); const content = params.get('content'); if (!content) return; const decodedContent = decodeURIComponent(content.replace(/\+/g, ' ')); const...