方法一
<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>
沒有留言:
張貼留言