我想复制函数参数中的文本,并在其后复制其他文本
我试图使textarea元素仅用于读取和隐藏它,并在其中添加文本,但是它不起作用
function Copy(str) {
const AllWord = str + "<br><br>Copied From HERE";
var el = document.createElement('textarea');
el.value = AllWord;
el.setAttribute('readonly', '');
el.style = {
position: 'absolute',
left: '-9999px'
};
document.body.appendChild(el);
el.select();
document.execCommand('copy');
document.body.removeChild(el);
}
Copy("CopiedText");
我希望它能够复制“ CopiedText”