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

HTML DOM form 屬性

定義和用法

form 屬性可返回對包含選項的表單的引用。

語法

optionObject.form

實例

<html>
<body>

<form id="myForm">
<select id="mySelect">
  <option id="apple">Apple</option>
  <option id="orange">Orange</option>
  <option id="pineapple">Pineapple</option>
  <option id="banana">Banana</option>
</select>
</form>

<p>The id of the form is:
<script type="text/javascript">
document.write(document.getElementById("apple").form.id)
</script>
</p>

</body>
</html>