当前位置: 代码迷 >> PB >> 使用 ZeroClipboard 实现复制效能
  详细解决方案

使用 ZeroClipboard 实现复制效能

热度:296   发布时间:2016-04-29 05:34:19.0
使用 ZeroClipboard 实现复制功能



ZeroClipboard.js 243行修改对ie的判断

<script type="text/javascript" src="js/ZeroClipboard.js"></script><input type="button" onclick="iecopy()" value="复制到剪贴板" id="d_clip_button" class="myself_cz" data-clipboard-target="spreadtext" />

?

$(document).ready(function() { //makeitcopy();getInformation();if(!document.all){var flashurl = contextPath + "/js/ZeroClipboard.swf";var clip = new ZeroClipboard( document.getElementById("d_clip_button"), {  moviePath: flashurl} );// 复制内容到剪贴板成功后的操作clip.on( 'complete', function(client, args) {   //alert("复制成功,复制内容为:"+ args.text);$.messager.alert('系统提示','复制成功');} ); }});

?




?