テーブルのセルからクリップボードにコピーします

1334 ワード

テーブルのセルからクリップボードにコピー


月23日
1

閉じるこの動画はお気に入りから削除されています.多分それはあなたを助けるでしょう..
テーブルセルからホバーでテキストをコピー..
document.querySelectorAll(".table-cell").forEach(function(elm){
elm.addEventListener("mouseover", function(e){
 e.target.style.backgroundColor = 'red'; 
  var copyText = e.target.textContent; 
   const el = document.createElement('textarea');
  el.value = copyText;
  document.body.appendChild(el);
  el.select();
  document.execCommand('copy');
  document.body.removeChild(el);

 
  /* Alert the copied text */
  alert("Copied the text: "
...
Open Full Answer