jQuery实现禁用右键

来源:互联网 发布:华硕主板网络唤醒设置 编辑:程序博客网 时间:2024/05/19 04:27
<!doctype html><html><head><meta charset="utf-8"><title>jQuery实现禁止鼠标右键</title><script type="text/javascript" src="jquery-1.8.3.js"></script><script type="text/javascript">$(document).ready(function() {        $(document).bind("contextmenu",function(e){return false;});    });</script></head><body><h2>你好!</h2>    </body></html>
在谷歌、火狐、IE11下页面上点击右键均无反应。
1 0