javascript中的复制到剪贴板功能

Copy to clipboard functionality in javascript?

本文关键字:剪贴板 功能 复制 javascript      更新时间:2023-09-26

我有复制到剪贴板的按钮功能,点击按钮,页面会自动刷新。但是,我不想用Internet Explorer刷新页面——使用是可能的

 event.preventDefault ? event.preventDefault() : event.returnValue = false;

这段代码在IE中运行良好。在Firefox和Chrome中有类似的方法吗?

对于按钮,

  <button class="SmallBtn" type="button" onclick="Print()" id="BatchDetailPrintBtn">Print</button>

jquery看起来像

 function Print() {
window.print();
} 

这非常适合我。