js禁止鼠标右键、网页禁止鼠标右键、html页面禁止用户使用鼠标右键的方法!
使用方法:
直接复制下面的源码放到html代码后面就可以了
<script>
// 禁止网页右键 start
if (window.Event){
document.captureEvents(Event.MOUSEUP);
}
function nocontextmenu(){
event.cancelBubble = true
event.returnValue = false;
return false;
}
function norightclick(e){
if (window.Event){
if (e.which == 2 || e.which == 3) return false;
}else{
if (event.button == 2 || event.button == 3){
event.cancelBubble = true
event.returnValue = false;
return false;
}
}
}
document.oncontextmenu = nocontextmenu;
document.onmousedown = norightclick;
// 禁止网页右键 end
</script>转载请注明来源地址:小川编程 » https://www.youhutong.com/index.php/article/index/149.html
1、本站发布的内容仅限用于学习和研究目的.请勿用于商业或非法用途,下载后请24小时内删除。
2、本站所有内容均不能保证其完整性,不能接受请勿购买或下载,如需完整程序,请去其官方购买正版使用
3、本站联系方式Email:admin@youhutong.com ,收到邮件会第一时间处理。
4、如侵犯到任何版权问题,请立即告知本站(立即在线告知),本站将及时删除并致以最深的歉意



