jsが実現したレプリカ対応chromeとIE
979 ワード
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>