菜鸟教程 try_dom_select_form 在线代码实例

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

 <form id="myForm">
<select id="mySelect">
  <option>Apple</option>
  <option>Pear</option>
  <option>Banana</option>
  <option>Orange</option>
</select>
</form>

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