1.10.2 • Published 3 years ago

xe-clipboard v1.10.2

Weekly downloads
110
License
MIT
Repository
github
Last release
3 years ago

xe-clipboard

gitee star npm version npm downloads gzip size: JS npm license

基于 execCommand API 实现复制内容到剪贴板,支持主流的 H5 浏览器 IE, Chrome, Firefox, Opera, Safari, IOS, Android
压缩大小 < 0.5KB

Browser Support

IEEdgeChromeFirefoxOperaSafari
10+ ✔Latest ✔42+ ✔41+ ✔29+ ✔10+ ✔

Installing

npm install xe-clipboard
<script src="https://cdn.jsdelivr.net/npm/xe-clipboard"></script>

Example

Run Test

<button id="btn1">Copy</button>
document.getElementById('btn1').addEventListener('click', function (evnt) {
  // 由于浏览器的安全机制,操作剪贴板必须在事件之内才能有效
  if (XEClipboard.copy('Copy this content to the clipboard.')) {
    alert('Copy success.')
  } else {
    alert('The browser is not supported.')
  }
})

License

MIT © 2017-present, Xu Liangzhan