# xe-clipboard
**Repository Path**: x-extends/xe-clipboard
## Basic Information
- **Project Name**: xe-clipboard
- **Description**: 纯 js 实现复制文本到剪贴板,支持IE、Chrome、Firefox、Opera、Safari、IOS、Android
- **Primary Language**: JavaScript
- **License**: MIT
- **Default Branch**: master
- **Homepage**: None
- **GVP Project**: No
## Statistics
- **Stars**: 73
- **Forks**: 16
- **Created**: 2019-06-05
- **Last Updated**: 2025-08-27
## Categories & Tags
**Categories**: javascript-toolkits
**Tags**: 剪贴板
## README
# xe-clipboard
[](https://gitee.com/x-extends/xe-clipboard/stargazers)
[](https://www.npmjs.com/package/xe-clipboard)
[](http://npm-stat.com/charts.html?package=xe-clipboard)
[](LICENSE)
基于 [execCommand](https://developer.mozilla.org/en-US/docs/Web/API/Document/execCommand) API 实现复制内容到剪贴板,支持主流的 H5 浏览器 IE, Chrome, Firefox, Opera, Safari, IOS, Android
压缩大小 < 0.5KB
## Browser Support
 |  |  |  |  | 
--- | --- | --- | --- | --- | --- |
10+ ✔ | Latest ✔ | 42+ ✔ | 41+ ✔ | 29+ ✔ | 10+ ✔ |
## Installing
```shell
npm install xe-clipboard
```
```xml
```
## Example
```html
```
```javascript
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.')
}
})
```
## Contributors
Thank you to everyone who contributed to this project.
[](https://github.com/x-extends/xe-clipboard/graphs/contributors)
## License
[MIT](LICENSE) © 2017-present, Xu Liangzhan