<BR> function copyToClipBoard(){ <BR> var clipBoardContent=""; <BR> clipBoardContent+=document.title; <BR> clipBoardContent+=""; <BR> clipBoardContent+=this.location.href; <BR> window.clipboardData.setData("Text",clipBoardContent); <BR> alert("复制成功,请粘贴到你的QQ/MSN上推荐给你的好友"); <BR> } <BR> <BR>function oCopy(obj){ <BR>obj.select(); <BR>js=obj.createTextRange(); <BR>js.execCommand("Copy") <BR>} <BR> <BR>function CopyUrl(target){ <BR>target.value=myimg.value; <BR>target.select(); <BR>js=myimg.createTextRange(); <BR>js.execCommand("Copy"); <BR>} <BR>function AddImg(target){ <BR>target.value="[IMG]"+myimg.value+"[/ img]"; (注:[/ img]中/后面有空格请去掉 ) <BR>target.select(); <BR>js=target.createTextRange(); <BR>js.execCommand("Copy"); <BR>} <BR> 如果你喜欢本站,就推荐给你的朋友吧! <BR>function copyText(obj) <BR>{ <BR>var rng = document.body.createTextRange(); <BR>rng.moveToElementText(obj); <BR>rng.scrollIntoView(); <BR>rng.select(); <BR>rng.execCommand("Copy"); <BR>rng.collapse(false);} <BR> 以下是代码片段: 复制代码 代码如下: http://www.jb51.net [点击复制] http://www.jb51.net [点击复制]