IE js代码: 复制代码 代码如下: <BR>function copyUrl2() <BR>{ <BR>var Url2=document.getElementById("biao1"); <BR>Url2.select(); // 选择对象 <BR>document.execCommand("Copy"); // 执行浏览器复制命令 <BR>alert("已复制好,可贴粘。"); <BR>} <BR> 用户定义的代码区域 chrome JS代码: 复制代码 代码如下: <br><br>var clip = new ZeroClipboard.Client(); <BR>clip.setHandCursor( true ); <BR>clip.setText('复制内容'); <BR>clip.glue('button'); <br><br>