案例:JavaScript案例     状态:可编辑再运行    进入竖版
 运行结果 
x
 
1
<!DOCTYPE html>
2
<html>
3
<body>
4
5
<p id="p1">Hello World!</p>
6
7
<script>
8
document.getElementById("p1").innerHTML="New text!";
9
</script>
10
11
<p>上面的段落被一条 JavaScript 脚本修改了。</p>
12
13
</body>
14
</html>
15