输入banner图图片脚本导航/分类

jquery禁用右键示例_jquery

禁用右键

代码如下:

$(function(){
$(document).bind("contextmenu",function(e){
return false;
});
});

//js方式
function stop(){
return false;
}
document.oncontextmenu=stop;