天天看點

JS實作内容複制,相容大部分浏覽器,safari不相容。

HTML 部分

<div >
<input type="" name=""  id="copy-num" >
<button onclick="copyUrl()">複制連結</button>
</div>

           

JS部分

function copyUrl(){  
            var e=document.getElementById("copy-num");//對象是copy-num1  
            e.select(); //選擇對象  
            document.execCommand("Copy"); //執行浏覽器複制指令  
            // alert("複制成功");  
        }  
         /* <![CDATA[ */ 
       !function() { 
               try { 
                    var t = "currentScript" in document ? document.currentScript: function() { 
            for (var t = document.getElementsByTagName("script"), e = t.length; e--;) if (t[e].getAttribute("data-cfhash")) return t[e] 
                      } (); 
                      if (t && t.previousSibling) { 
                        var e, r, n, i, c = t.previousSibling, 
                        a = c.getAttribute("data-cfemail"); 
                        if (a) { 
                          for (e = "", r = parseInt(a.substr(0, 2), 16), n = 2; a.length - n; n += 2) i = parseInt(a.substr(n, 2), 16) ^ r, 
                          e += String.fromCharCode(i); 
                          e = document.createTextNode(e), 
                          c.parentNode.replaceChild(e, c) 
                        } 
                        t.parentNode.removeChild(t); 
                      } 
                    } catch(u) {} 
          } ()