常用实例2023-5-10

小白 2023-05-10 原创文章


常用实例2023-5-10



1 复制到浏览器剪贴板


$(document).on('click','.fuzhi',function (){
    let text = $(this).prev().text();
    let transfer = document.createElement('input');
    document.body.appendChild(transfer);
    transfer.value = text;  // 这里表示想要复制的内容
    transfer.focus();
    transfer.select();
    if (document.execCommand('copy')) {
        document.execCommand('copy');
    }
    transfer.blur();
    layer.msg('复制成功')
    document.body.removeChild(transfer);
})



站点信息