案例:javascript案例     状态:可编辑再运行    进入竖版
 运行结果 
x
 
1
<!DOCTYPE html>
2
<html>
3
<body>
4
5
<form id="form1">
6
<button id="button1" type="button">点击这里</button>
7
</form>
8
9
<p>包含该按钮的表单的 id 是:
10
<script>
11
document.write(document.getElementById("button1").form.id);
12
</script>
13
</p>
14
15
</body>
16
</html>
17