禁止鼠标右键复制以及ctrl+c复制代码
2023-07-25 加入收藏
<script> // 监听 ctrl + c事件 $(document).unbind('keydown').bind('keydown', function(e){ if(e.ctrlKey && e.keyCode == 67) { doSomething(); // 返回false, 防止重复触发copy事件 return false; } }); // 鼠标右键的复制事件 $(document).unbind('copy').bind('copy', function(e) { setTime(); console.log('右键复制 监听成功'); alert('当前内容禁止复制,如需复制请加VIP会员'); return false; }); </script> <script> function doSomething(){ setTime(); console.log('ctrl + c 监听成功'); alert('当前内容禁止复制,如需复制请加VIP会员'); } function setTime(){ if(window.localStorage) { let time = localStorage.getItem('time'); time ? time ++ : time = 1; localStorage.setItem('time', time); } } </script>