亚洲乱码中文字幕综合,中国熟女仑乱hd,亚洲精品乱拍国产一区二区三区,一本大道卡一卡二卡三乱码全集资源,又粗又黄又硬又爽的免费视频

HTML DOM form 屬性

定義和用法

form 屬性返回對包含該 text area 的 表單的引用。

若成功,則該屬性返回一個 form 對象。

語法

textareaObject.form

實例

本例返回 text area 所屬的表單的 id:

<html>
<body>

<form id="form1">
<textarea id="txt1">
Hello world....This is a text area
</textarea>
</form>

<p>The id of the form containing the text area is:
<script type="text/javascript">
x=document.getElementById('txt1');
document.write(x.form.id);
</script>
</p>

</body>
</html>