当前位置: 编程技术>jquery
jquery禁用右键方法举例
来源: 互联网 发布时间:2014-10-04
本文导语: 例子,jquery禁用右键。 禁用右键 代码示例: $(function(){ $(document).bind("contextmenu",function(e){ return false; }); }); //js方式 function stop(){ return false; } document.oncontextmenu=stop; jquery禁用右键单击功能,jquer...
例子,jquery禁用右键。
禁用右键
代码示例:
$(function(){
$(document).bind("contextmenu",function(e){
return false;
});
});
//js方式
function stop(){
return false;
}
document.oncontextmenu=stop;
$(document).bind("contextmenu",function(e){
return false;
});
});
//js方式
function stop(){
return false;
}
document.oncontextmenu=stop;
jquery禁用右键单击功能,jquery屏蔽F5刷新功能。
jquery禁用右键单击功能屏蔽F5刷新的具体实现代码。
1、禁用右键单击功能
代码示例:
$(document).ready(function() {
$(document).bind("contextmenu",function(e) {
alert("sorry! No right-clicking!");
return false;
});
});
$(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;
}
});
});
$(document).bind("keydown",function(e){
e=window.event||e;
if(e.keyCode==116){
e.keyCode = 0;
return false;
}
});
});