Jquery 防止页面刷新

1、禁止鼠标右键功能
$(document).ready(function() {
$(document).bind("contextmenu",function(e) {
alert("sorry! No right-clicking!");
return false;
});
});

2、禁止键盘F5刷新


$(document).ready(function() {
$(document).bind("keydown",function(e){
e=window.event||e;
if(e.keyCode==116){
e.keyCode = 0;
return false;
}
});
});

posted @ 2014-11-08 14:13  mythp  阅读(844)  评论(0编辑  收藏  举报