xe-clipboard
TypeScript icon, indicating that this package has built-in type declarations

1.10.2 • Public • Published

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

IE Edge Chrome Firefox Opera Safari
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

Readme

Keywords

Package Sidebar

Install

npm i xe-clipboard

Weekly Downloads

237

Version

1.10.2

License

MIT

Unpacked Size

13.8 kB

Total Files

7

Last publish

Collaborators

  • x-extends