网页禁止复制代码(js禁止复制文字功能)
这篇文章主要介绍了JS如何实现网站内容禁止复制的方法,希望可以帮助到你~
方法1:
在网页中加入以下代码:
<script language="Javascript"> document.oncontextmenu=new Function("event.returnValue=false"); document.onselectstart=new Function("event.returnValue=false"); </script>
方法2:
在网页中加入以下代码:
<body oncontextmenu="return false" onselectstart="return false"> </body>
或
<body oncontextmenu="event.returnValue=false" onselectstart="event.returnValue=false"></body>
实质上,方法2与方法1是一样的。
方法3:
如果只限制复制,可以在网页中加入以下代码:
<body oncopy="alert('对不起,禁止复制!');return false;"></body>
除注明外的文章,均为来源:老汤博客,转载请保留本文地址!
原文地址:https://tangjiusheng.cn/js/521.html
原文地址:https://tangjiusheng.cn/js/521.html
大家都在看