jquery-zclip插件完成页面复制粘贴
下载地址 https://github.com/patricklodder/jquery-zclip.git
- <script src="jquery-1.9.1.js"></script>
- <script src="jquery-zclip-master/jquery.zclip.js"></script>
- <button id="copy">copy</button>
- <input id="content"/>
- <script>
-
- $(function(){
- $('#copy').zclip({
- path: 'jquery-zclip-master/ZeroClipboard.swf',
- copy: function(){//复制内容
- return $('#content').val();
- },
- afterCopy: function(){//复制成功
- alert("复制成功")
- }
- });
- });
- </script>