案例:javascript案例     状态:可编辑再运行    进入竖版
 运行结果 
x
 
1
<html>
2
<head>
3
<script type="text/javascript">
4
function isEventCancelable(event)
5
  { 
6
  alert(event.cancelable);
7
  }
8
</script>
9
</head>
10
11
<body onmousedown="isEventCancelable(event)">
12
13
<p>Click somewhere in the document. An alert box will tell if the event is a cancelable event.</p>
14
15
</body>
16
</html>
17