タイピング関係@ wiki

コピペで使えるjs

最終更新:

tube

- view
管理者のみ編集可

指定したキー押したら指定した要素のテキストコピーできるやつ


(function() {
  document.addEventListener('keypress', a);
  function a(e) {
        if(e.code === 'キー名'){
  const basho = document.querySelector('[class="追加したい場所のclass名。F12とかで確認できる。"]');
  const Botan = document.createElement("input");
  Botan.setAttribute("value","ここにボタンに表示する名前");
  Botan.setAttribute("type","button");
  Botan.setAttribute("id","botan");
  basho.parentNode.appendChild(Botan);
  document.getElementById("botan").onclick = function(){
  var Shuto = document.querySelector('[class="ここにclass名。f12とかで確認できる"]').innerText;
  navigator.clipboard.writeText(Shuto);
  alert("コピーが完了した後に表示する文");
  }
        };
  }})();
ウィキ募集バナー