// 方法定义
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('复制成功')
}
// 监听点击事件
$('.copy').click(function(){
// 调用复制方法
Copy($('.nice_word').text())
})
其中('.nice_word')为要复制的内容
亲自在手机上试过,可以使用~
————————————————
原文链接:https://blog.csdn.net/qq_38282872/article/details/80332518
网友评论