js拷贝指定内容到剪切板
2021-06-28 03:03
标签:sel keyword var board back clip com str oar js拷贝指定内容到剪切板 标签:sel keyword var board back clip com str oar 原文地址:http://www.cnblogs.com/zinan/p/7145212.html function copyTextToClipboard(text) {
var textArea = document.createElement("textarea");
textArea.style.background = ‘transparent‘;
textArea.value = text;
document.body.appendChild(textArea);
textArea.select();
try {
var successful = document.execCommand(‘copy‘);
var msg = successful ? ‘successful‘ : ‘unsuccessful‘;
} catch (err) {
console.log(‘Oops, unable to copy‘);
}
document.body.removeChild(textArea);}