案例:javascript案例     状态:可编辑再运行    进入竖版
 运行结果 
x
 
1
<html>
2
<head>
3
<script type="text/javascript">
4
function showTimestamp(event)
5
  {
6
  var minutes = 1000*60
7
  x=event.timeStamp;
8
  alert(x/minutes)
9
  }
10
</script>
11
</head>
12
13
<body onmousedown="showTimestamp(event)">
14
15
<p>Click in the document. An alert box will alert the timestamp.</p>
16
17
</body>
18
</html>
19