案例:HTML DOM案例     状态:可编辑再运行    进入竖版
 运行结果 
x
 
1
<html>
2
<head>
3
<script type="text/javascript">
4
function disable()
5
{
6
if (event.button == 2)
7
{
8
alert("对不起,不允许在页面上使用右键。\n现在您无法查看源代码,\n也不能盗取图像。")
9
}
10
}
11
12
</script>
13
</head>
14
<body onmousedown="disable()">
15
<p>在页面点击鼠标右键可以触发该事件。</p>
16
<p>请注意,这个事件无法保证别人不会查看页面源代码或者盗取图片。</p>
17
</body>
18
</html>
19