案例:JavaScript案例     状态:可编辑再运行    进入竖版
 运行结果 
x
 
1
<html>
2
<head>
3
<script type="text/javascript">
4
function message()
5
{
6
alert("该提示框是通过 onload 事件调用的。")
7
}
8
</script>
9
</head>
10
11
<body onload="message()">
12
13
</body>
14
</html>
15