现在的位置: 首页 > 综合 > 正文

Js 剪切板复制

2013年04月18日 ⁄ 综合 ⁄ 共 272字 ⁄ 字号 评论关闭
function copyToClipBoard(){
         var clipBoardContent="";
         clipBoardContent+=location.href;
         clipBoardContent+="\r\n";
         clipBoardContent=this.location.href;
         window.clipboardData.setData("Text",clipBoardContent);
         alert("拷贝地址成功!");
           }

抱歉!评论已关闭.