复制功能

2020-07-27  本文已影响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)
上一篇 下一篇

猜你喜欢

热点阅读