下面分享两种代码,一直在别人复制网站内容时,显示温馨提示语;另一种更直接的禁止了所有有关复制功能键的使用的,两种代码直接放在网站程序footer里面即可。
第一种
<html> <head><title>防复制</title><meta http-equiv=”Content-Type” cont ent=”text/html; charset=utf-8″ /></head> <script> function stop(){ alert(‘鄙视盗版,尊重版权,人人有责!’); return false; } document.oncontextmenu=stop; </script> <body onselectstart=”return false” onpaste=”return false” oncop y=”return false;” oncut=”return false;” > </body> </html>
第二种