使用javascript阻止右键点击而触发的浏览器菜单

使用js来实现

document.onContextMenu = function(e)
{
 e = e || window.event;
 e.cancelBubble = true;
 e.returnValue = false;
 returen false;
}



使用jquery.js来实现

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






你可能感兴趣的:(使用javascript阻止右键点击而触发的浏览器菜单)