Created
October 29, 2020 04:10
-
-
Save roshanca/4dcf85dbbf69d338d970fbe536053fea to your computer and use it in GitHub Desktop.
复制内容至系统剪贴板 #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
export const copyToClip = (text) => { | |
const input = document.createElement('input') | |
input.setAttribute('value', text) | |
input.setAttribute('readonly', 'readonly') | |
document.body.appendChild(input) | |
input.select() | |
try { | |
document.execCommand('copy') | |
} catch() { | |
console.log('无法复制,请手动复制!') | |
} | |
document.body.removeChild(input) | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment