手机端实现点击复制功能

此生再无相见时 提交于 2019-12-03 21:38:57

function Copy(str){
    var save = function(e){
        e.clipboardData.setData('text/plain', str);
        e.preventDefault();
    }
    document.addEventListener('copy', save);
    document.execCommand('copy');
    document.removeEventListener('copy',save);
    alert('复制成功!');
}

$('#cardList').on('click', 'div.btn', function(){
    Copy($(this).prev('div').find('span.code').text());
});

转载于:https://my.oschina.net/guomingliang/blog/853878

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!