首页 > 代码库 > jquery阻止网页中右键的点击

jquery阻止网页中右键的点击

 

 

<body onm ousedown="whichElement(event)">

</body>

 

 

function whichElement(e) {

if (e.button == 2 || e.button == 4) {
alert("右键被阻止了");
$.preventDefault();//阻止右键
}

}

jquery阻止网页中右键的点击