https://juejin.im/post/5a94f8eff265da4e9b593c29?utm_source=gold_browser_extension
Created
February 28, 2018 03:42
-
-
Save Calerme/a5503d571833a8b016f8170a8fdc93f1 to your computer and use it in GitHub Desktop.
JavaScript 复制内容到剪贴板
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* 使用 clipboard.js 库 */ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
btn.addEventListener('click', () => { | |
const input = document.querySelector('#demoInput'); | |
input.select(); | |
if (document.execCommand('copy')) { | |
document.execCommand('copy'); | |
console.log('复制成功'); | |
} | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment