1
2
3
4
5
6
7
8
9
document.addEventListener('copy',function(e){
// 阻止默认行为
e.preventDefault();
// 获取剪切板内容
var text = window.getSelection().toString();
// 设置剪切板内容
e.clipboardData.setData('text/plain',"不能复制!");
console.log('禁止复制');
},false)