JavaScript想要实现在网页中禁止鼠标右键和复制功能常用的有两种方法,一种是通过在html标签后面直接加上相应代码,另一种是在通过JavaScript的加载时实现。
一、通过body标签来实现
在<body>中加入以下代码:
<body oncontextmenu=”return false” onselectstart=”return false”>或
<body oncontextmenu=”event.returnValue=false” onselectstart=”event.returnValue=false”>
其中:
1、oncontextmenu=”return false”是用来禁止右键的;
2、onselectstart=”return false”是用来禁止选取文本的;
二、通过JavaScript的脚本功能来实现
<script language=”Javascript”>
document.oncontextmenu=new Function(“event.returnValue=false”); //禁止右键
document.onselectstart=new Function(“event.returnValue=false”); //禁止选取
</script>
效果同上。
最新评论
下载地址呢
没有下载?
这篇文章写得深入浅出,让我这个小白也看懂了!
这个确实很实用,工作中会经常遇到这个问题。
这个教程还是比较实用的,希望可以对大家有点用。