案例:javascript案例     状态:可编辑再运行    进入竖版
 运行结果 
x
 
1
<!DOCTYPE html>
2
<html>
3
<body>
4
5
<h1>我的第一段 JavaScript</h1>
6
7
<p>
8
JavaScript 能够对事件作出反应。比如对按钮的点击:
9
</p>
10
11
<button type="button" onclick="alert('Welcome!')">点击这里</button>
12
13
</body>
14
</html>
15