网站禁止右键和复制JS代码

这个其实很简单,一段JS代码就能禁止网页鼠标右键和复制了。测试了IE和谷歌浏览器,其他的没测试。<style type="text/css">
body {
-webkit-touch-callout: none;
-webkit-user-select: none;

[时间:09-23]    [浏览:]    [放入收藏夹]    [查看详情]

这个其实很简单,一段JS代码就能禁止网页鼠标右键和复制了。测试了IE和谷歌浏览器,其他的没测试。

<style type="text/css">  
body {  
-webkit-touch-callout: none;  
-webkit-user-select: none;  
-khtml-user-select: none;  
-moz-user-select: none;  
-ms-user-select: none;  
user-select: none;  
}  
</style>  
<script langauge="javascript">  
document.oncontextmenu=function(e){return false;}  
</script>

另一种方法

一个更简单的方法就是在<body>中加入如下的代码,这样鼠标的左右键都失效了. 

topmargin="0" oncontextmenu="return false" ondragstart="return false" onselectstart ="return false" onselect="document.selection.empty()" oncopy="document.selection.empty()" onbeforecopy="return false" onmouseup="document.selection.empty()"

禁止网页内容复制.粘贴:在<body>中加入以下代码: 

<body onmousemove=/HideMenu()/ oncontextmenu="return false" ondragstart="return false" onselectstart ="return false" onselect="document.selection.empty()" oncopy="document.selection.empty()" onbeforecopy="return false" onmouseup="document.selection.empty()">


  本文转载自:精准像素:11px.cn ,感谢作者分享实用知识


标签: