案例:JavaScript案例     状态:可编辑再运行    进入竖版
 运行结果 
x
 
1
<html>
2
<head>
3
4
<script type="text/javascript">
5
function myfunction()
6
{
7
alert("您好!")
8
}
9
</script>
10
11
</head>
12
<body>
13
14
<form>
15
<input type="button" onclick="myfunction()" value="调用函数">
16
</form>
17
18
<p>通过点击这个按钮,可以调用一个函数。该函数会提示一条消息。</p>
19
20
</body>
21
</html>
22