菜鸟教程 tryjsref_button_form 在线代码实例

运行 保存 全屏 右侧展示 实时查看
主题:

 <form id="form1">
<button id="button1" type="button">Click me!</button>
</form>

<p>The id of the form containing the button is: 
<script>
document.write(document.getElementById("button1").form.id);
</script></p>