html中複製指定內容到剪切板

// 複製的方法
    function copyText(text, callback){ // text: 要複製的內容, callback: 回調
        var tag = document.createElement('input');
        tag.setAttribute('id', 'cp_hgz_input');
        tag.value = text;
        document.getElementsByTagName('body')[0].appendChild(tag);
        document.getElementById('cp_hgz_input').select();
        document.execCommand('copy');
        document.getElementById('cp_hgz_input').remove();
        if(callback) {callback(text)}
    }
    
    調用
        /* 複製連接到剪貼板 */
    function copy() {
        copyText( window.location.href, function (){
           alert('複製成功');
           console.log('複製成功')
        }
        )
    }
相關文章
相關標籤/搜索