安装方法一(直接复制,没有选择复制与否):
在post_newthread.htm , forumdisplay.htm:
查找:
- theform.topicsubmit.disabled = true;
复制代码
在:viewthread.htm post_newreply.htm
查找:
- theform.replysubmit.disabled = true;
复制代码
在post_editpost.htm
查找:
- theform.editsubmit.disabled = true;
复制代码
在下面加上:
- copycode(document.input.message);
复制代码
3:如果短消息也用的话:
在pm_send.htm
查找:
- onSubmit="javascript: this.pmsubmit.disabled=true"
复制代码
替换为:
- onSubmit="javascript: copycode(document.input.message); this.pmsubmit.disabled=true"
复制代码
就那么简单
搞定了
安装方法二: (默认为复制,有选择复制与否框):
1:
在post_newthread.htm , forumdisplay.htm:
查找:
- theform.topicsubmit.disabled = true;
复制代码
在:viewthread.htm post_newreply.htm
查找:
- theform.replysubmit.disabled = true;
复制代码
在post_editpost.htm
查找:
- theform.editsubmit.disabled = true;
复制代码
在下面加上:
- if(document.input.copymessage.checked==true){copycode(document.input.message);}
复制代码
2:
在post_newthread.htm , post_editpost.htm , post_newreply.htm
查找:
- <input type="checkbox" name="parseurloff"
复制代码
在上面加上:
- <input type="checkbox" name="copymessage" checked> 复制内容<br>
复制代码
在:viewthread.htm forumdisplay.htm
查找:
- <input type="checkbox" name="emailnotify" value="1"> {lang post_email_notify}
复制代码
下面加上:
- <br><input type="checkbox" name="copymessage" checked> 复制内容
复制代码
如果短消息也用的话:
在pm_send.htm
查找:
- onSubmit="javascript: this.pmsubmit.disabled=true"
复制代码
替换为:
- onSubmit="javascript: copycode(document.input.message); this.pmsubmit.disabled=true"
复制代码
就那么简单
搞定了
[ 本帖最后由 lu5266 于 2005-10-17 14:24 编辑 ] |