欧美bbbwbbbw肥妇,免费乱码人妻系列日韩,一级黄片

HTML DOM form 屬性

定義和用法

form 屬性可返回對包含該下拉列表的表單元素的引用。

語法

selectObject.form

實例

<html>
<body>

<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 type="text/javascript">
document.write(document.getElementById("mySelect").form.id)
</script>
</p>

</body>
</html>