欢迎来到福编程网,本站提供各种互联网专业知识!

用 javascript 实现的点击复制代码

发布时间:2007-03-24 作者: 来源:转载
用javascript实现的点击复制代码
标题


functioncopyToClipBoard(){
varclipBoardContent="";
clipBoardContent+=document.title;
clipBoardContent+="";
clipBoardContent+=this.location.href;
window.clipboardData.setData("Text",clipBoardContent);
alert("复制成功,请粘贴到你的QQ/MSN上推荐给你的好友");
}



functionCopyUrl(target){
target.value=myimg.value;
target.select();
js=myimg.createTextRange();
js.execCommand("Copy");
}
functionAddImg(target){
target.value="[IMG]"+myimg.value+"[/img]";(注:[/img]中/后面有空格请去掉)
target.select();
js=target.createTextRange();
js.execCommand("Copy");
}




如果你喜欢本站,就推荐给你的朋友吧!


functioncopyText(obj)
{
varrng=document.body.createTextRange();
rng.moveToElementText(obj);
rng.scrollIntoView();
rng.select();
rng.execCommand("Copy");
rng.collapse(false);}

以下是代码片段:
复制代码 代码如下:
http://www.jb51.net
[点击复制]


http://www.jb51.net
[点击复制]



相关推荐