document.execCommand无法与我一起使用

时间:2019-05-15 18:23:12

标签: javascript

我想复制函数参数中的文本,并在其后复制其他文本

我试图使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”

0 个答案:

没有答案