jsは貼り付け板の機能を実現します.

2180 ワード

  • jsコード
  •  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);
        }
    
  • .html
  • <button type="button" class="copy-link" onclick="copyLink(this)">    </button>