ZeroClipboard 的官网 点这里,github地址 点这里。
事例如下:
在引入 ZeroClipboard.js 之后,
<button id="clip_button" data-clipboard-target="fe_text">复制到剪贴板</button>
fe_text 为文本的标签的 id
// 定义一个新的复制对象
var clip = new ZeroClipboard( document.getElementById("clip_button"), {
moviePath: "ZeroClipboard.swf"
}); // 复制内容到剪贴板成功后的操作
clip.on( 'complete', function(client, args) {
alert("复制成功,复制内容为:"+ args.text);
});