美文网首页
复制功能

复制功能

作者: 帮我的鸵鸟盖个章 | 来源:发表于2020-07-27 09:04 被阅读0次
 // 复制
var copyText = '这是复制内容':
var textArea = document.createElement('textarea');
textArea.style.background = 'transparent';
textArea.value = copyText;
document.body.appendChild(textArea);
textArea.select();
document.execCommand('copy');
document.body.removeChild(textArea)

相关文章

网友评论

      本文标题:复制功能

      本文链接:https://www.haomeiwen.com/subject/sfbalktx.html