js-禁止复制 Gary Wang 2024-01-04 前端 js 123456789document.addEventListener('copy',function(e){ // 阻止默认行为 e.preventDefault(); // 获取剪切板内容 var text = window.getSelection().toString(); // 设置剪切板内容 e.clipboardData.setData('text/plain',"不能复制!"); console.log('禁止复制');},false)