关于对鼠标左右键的控制 请高人指教
想要在HTML页面中实现点击鼠标左键时弹出你好信息,点击鼠标右键时弹出右键被屏蔽的信息。并要求本页面在2分钟内实现自动关闭。
[CODE]
<html>
<head>
<script>
function mousedown(){
//event.button取值:0没有,1左键,2右键,3左右,4中间,5中左,6中右
if(event.button==1) alert("你好");
if(event.button==2 || event.button==3 || event.button==6) alert("右键被屏蔽");
}
</script>
</head>
<body onmousedown="mousedown()" onContextMenu="return(false)">
</body>
</html>
[/CODE]