1
    // 复制的方法
    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('复制成功')
        }
        )
    }

潍坊老登程序员
303 声望5 粉丝

内涵段子TV