JS浏览器复制

function copyArticle() {
  const range = document.createRange();
  range.selectNode(document.getElementById('content'));
  const selection = window.getSelection();
  if(selection.rangeCount > 0) selection.removeAllRanges();
  selection.addRange(range);
  document.execCommand('copy');
  alert("复制成功!");
  }
  document.getElementById('copyBT').addEventListener('click', copyArticle, false); 

猜你喜欢

转载自www.cnblogs.com/jyc226/p/11606874.html