教程集 www.jiaochengji.com
教程集 >  脚本编程  >  javascript  >  正文 js 屏蔽右键菜单效果代码

js 屏蔽右键菜单效果代码

发布时间:2016-11-30   编辑:jiaochengji.com
教程集为您提供js 屏蔽右键菜单效果代码等资源,欢迎您收藏本站,我们将为您提供最新的js 屏蔽右键菜单效果代码资源
现在我们在很多网站会看到一些网页直接利用js屏蔽右键菜单了,这样导致我们不得不使用浏览查看菜单进行查看哦,下面我把代码分享给各位朋友,大家可参考。
提示:您可以先修改部分代码再运行

<textarea name="runcool" rows="28" cols="75" > <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=gb2312" /> <title>屏蔽右键菜单</title> <script type="text/javascript"> //屏蔽右键菜单 document.oncontextmenu = function (event){ if(window.event){ event = window.event; }try{ var the = event.srcElement; if (!((the.tagName == "INPUT" && the.type.toLowerCase() == "text") || the.tagName == "TEXTAREA")){ return false; } return true; }catch (e){ return false; } } </script> </head> <body>

屏蔽右键菜单屏蔽右键菜单屏蔽右键菜单 屏蔽右键菜单

 

屏蔽右键菜单

 

 

 

你点击一下你的右键菜单会不会弹出菜单啊,如果你要查看源码我们可以在浏览查看菜单中查看我哦。

</body> </html></textarea>
提示:您可以先修改部分代码再运行

您可能感兴趣的文章:
js 屏蔽右键菜单效果代码
js禁止页面F5刷新 右键与后退的代码
兼容ie,ff浏览屏蔽右键菜单
js禁止页面刷新 js禁止用F5键刷新 js禁止右键
javascript屏蔽右键的简单方法
javascript屏蔽(禁止)键盘按键的一些代码
javascript禁止网页右键的方法
禁止右键、禁选择、禁粘贴、禁shift、禁ctrl、禁alt的js代码
js禁用鼠标右键菜单(加强版)
js屏蔽网页中常用快捷键的代码示例

[关闭]
~ ~