zclip

JQuery zClip兼容所有浏览器的插件 实现复制到剪贴板功能

青春壹個敷衍的年華 提交于 2019-12-04 09:48:54
1,引用jQuery 以及 jquery.zclip.min.js <script type="text/javascript" src="http://apps.bdimg.com/libs/jquery/2.1.1/jquery.min.js"></script> <script src="https://cdn.bootcss.com/zclip/1.1.2/jquery.zclip.min.js"></script> 2,html格式 <input type="text" value="www.sitejs.cn" id="link"> <span id="copyBtn">复制链接</span> 3,js调用 $('#copyBtn').zclip({ path: "ZeroClipboard.swf", copy: function(){ return $('#link').val();       }, afterCopy:function(){ alert('复制成功'); } }); 来源: oschina 链接: https://my.oschina.net/u/2393989/blog/3026344

jquery+flash(zclip)实现点击复制到剪切板

匆匆过客 提交于 2019-12-03 07:44:31
jQuery- zclip 是一个 复制 内容到剪贴板的jQuery插件,使用它我们不用考虑不同浏览器和浏览器版本之间的兼容问题。jQuery-zclip插件需要Flash的支持,使用时记得电脑安装Adobe Flash Player。 加载jQuery和zClip,地址请根据各自的存放地址做相应修改。 <script type="text/javascript" src="js/jquery.js"></script> <script type="text/javascript" src="js/jquery.zclip.min.js"></script> js实现点击复制的代码(本地测试无法使用,上传到服务器测试) $(function(){ $('#copy_input').zclip({ path: 'js/ZeroClipboard.swf', copy: function(){ //复制内容 return $('#mytext').val(); }, afterCopy: function(){ //复制成功 $("<span id='msg'/>").insertAfter($('#copy_input')).text('复制成功'); } }); }); 需要注意 如果是复制的内容来自输入框input、textarea等,copy对象使用: copy:

zclip not working inside table

吃可爱长大的小学妹 提交于 2019-11-30 16:41:17
问题 I put my example code here http://jsfiddle.net/8epWm/2/ I want to enable zClip on an element inside a table and it's not working. Any ideas? 回答1: Table elements have trouble with absolute positioning, and zClip uses absolute positioning to place the flash movie on top of the target element. To work around this you can wrap a block level element (I used a <div> ) around the target element, and give that position: relative . Edit: See http://jsfiddle.net/dloewen/Ny9We/2/ for a working example.