1、禁用右键单击功能
$(document).ready(function() {
$(document).bind("contextmenu",function(e) {
alert("sorry! No right-clicking!");
return false;
});
});$(document).ready(function() {
$(document).bind("keydown",function(e){
e=window.event||e;
if(e.keyCode==116){
e.keyCode = 0;
return false;
}
});
});jquery禁用右键单击、F5刷新,布布扣,bubuko.com
原文:http://blog.csdn.net/itmyhome1990/article/details/21009573