Skip to content

Instantly share code, notes, and snippets.

@xyuanmu
Last active December 6, 2020 08:07
Show Gist options
  • Save xyuanmu/2a235ccf2dc9b1501fdcec80060604d0 to your computer and use it in GitHub Desktop.
Save xyuanmu/2a235ccf2dc9b1501fdcec80060604d0 to your computer and use it in GitHub Desktop.
Copy text to Clipboard
function copy(text){
const input = document.createElement('input');
input.setAttribute('readonly', 'readonly');
input.setAttribute('value', text);
input.style = "position:absolute;opacity:0";
document.body.appendChild(input);
input.select();
if (document.execCommand('copy')) {
console.log('复制成功');
}
document.body.removeChild(input);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment