function oCopy(obj){
obj.select();
js=obj.createTextRange();
js.execCommand("Copy")
}
script>
function CopyUrl(target){
target.value=myimg.value;
target.select();
js=myimg.createTextRange();
js.execCommand("Copy");
}
function AddImg(target){
target.value="[IMG]"+myimg.value+"[/ img]"; (注:[/ img]中/后面有空格请去掉 )
target.select();
js=target.createTextRange();
js.execCommand("Copy");
}
script>
如果你喜欢本站,就推荐给你的朋友吧!
function copyText(obj)
{
var rng = document.body.createTextRange();
rng.moveToElementText(obj);
rng.scrollIntoView();
rng.select();
rng.execCommand("Copy");
rng.collapse(false);}
script>
以下是代码片段:
代码如下:
http://www.gxlcms.com
[点击复制]
http://www.gxlcms.com
[点击复制]