案例:JavaScript案例     状态:可编辑再运行    进入竖版
 运行结果 
x
 
1
<html>
2
<head>
3
<script type="text/javascript">
4
function disp_alert()
5
{
6
alert("我是警告框!!")
7
}
8
</script>
9
</head>
10
<body>
11
12
<input type="button" onclick="disp_alert()" value="显示警告框" />
13
14
</body>
15
</html>
16