|
|
| 不许点左键 |
| 整理:Cnwshow.Com 来源:Internet 整理时间:2008-2-17 |
|
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
<title>不许点左键</title>
<script language="javascript">
function click() {
if (event.button==1) {
alert('不许你点左键!')
}
}
document.onmousedown=click
</script>
</head>
<body>
<p>点击左键看效果</p>
<p></p>
</body>
</html>
|
|
|
|
|
|