$(function(){ /*--------------------------------------------------------------------------------------*/ $(".copy_hash").on("click",function(){ let text= $(this).text(); let $textarea = $(''); $textarea.text(text); $(this).append($textarea); $textarea.select(); document.execCommand('copy'); $textarea.remove(); alert("ハッシュ値をコピーしました。\n"+text); }); /*-----------------------------------------------------------------------------------------------------*/ });