[JavaScript]防止滑鼠右鍵功能

防止滑鼠右鍵功能,此方法只能房君子不妨小人,只要按住滑鼠左鍵再按右鍵,然後同時放開即可破解
方法一



<script language="JavaScript">
if (navigator.appName.indexOf("Internet Explorer") != -1)
document.onmousedown = noSourceExplorer;
else
{
alert("Mozilla禁止使用");
window.close();
}
function noSourceExplorer()
{
if (event.button == 2 event.button == 3)
{
alert("IE無法使用右鍵!");
}
alert(event.button);
}
</script>



方法二


<html>
<head>
<title>滑鼠右鍵測試</title>
</head>
<body oncontextmenu="return false" onselectstart="return false" ondragstart="return false">
</body>
</html>