首页 > 代码库 > ZeroClipBoard 兼容IE浏览器的 多个复制
ZeroClipBoard 兼容IE浏览器的 多个复制
一开始去ZeroclipBoard 官网下载最新版本(2.x),后来才发现根本就不支持IE浏览器,IE浏览器打开官网也是报错。
ZeroclipBoard 的git有一段说明:
ZeroClipboard v2.x is expected to work in IE9+ and all of the evergreen browsers. Although support for IE7 & IE8 was officially dropped in v2.0.0, it was actuallystill technically supported through v2.0.2.
https://github.com/zeroclipboard/zeroclipboard
现在改成1.x版本,兼容IE浏览器:
/** * @description 复制 为了兼容IE9- ZeroClipboard 放弃2.x使用1.x版本 * @param $o * @param text */ function initCopy($o, text) { if (typeof text == 'undefined') { if (typeof $o.value != 'undefined') { text = $o.value; } else if (typeof $o.innerHTML != 'undefined') { text = $o.innerHTML; } else { text = 'NULL'; } } var client = new ZeroClipboard($o); client.on('load', function (client) { client.on('datarequested', function (client) { client.setText(text); }); client.on('complete', function (client, args) { alert('复制成功 ' + text); }); }); client.on('wrongflash noflash', function () { alert('flash error'); ZeroClipboard.destroy(); }); }
ZeroClipBoard 兼容IE浏览器的 多个复制
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。