jsは貼り付け板の機能を実現します.
2180 ワード
function copyLink(){
//
var oInput = document.createElement('input');
oInput.value = ' 。。。。';
document.body.appendChild(oInput);
oInput.select(); //
document.execCommand("Copy"); //
oInput.className = 'oInput';
oInput.style.display='none';
console.log( oInput.value);
}
<button type="button" class="copy-link" onclick="copyLink(this)"> </button>