jquery禁用右键示例_jquery
来源:动视网
责编:小采
时间:2020-11-27 21:22:17
jquery禁用右键示例_jquery
jquery禁用右键示例_jquery:禁用右键 代码如下:$(function(){ $(document).bind(contextmenu,function(e){ return false; });}); //js方式function stop(){ return false;}document.oncontextmenu=stop;
导读jquery禁用右键示例_jquery:禁用右键 代码如下:$(function(){ $(document).bind(contextmenu,function(e){ return false; });}); //js方式function stop(){ return false;}document.oncontextmenu=stop;

禁用右键
代码如下:
$(function(){
$(document).bind("contextmenu",function(e){
return false;
});
});
//js方式
function stop(){
return false;
}
document.oncontextmenu=stop;
jquery禁用右键示例_jquery
jquery禁用右键示例_jquery:禁用右键 代码如下:$(function(){ $(document).bind(contextmenu,function(e){ return false; });}); //js方式function stop(){ return false;}document.oncontextmenu=stop;