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

HTML DOM form 屬性

定義和用法

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

若成功,則該屬性返回一個(gè) form 對(duì)象。

語法

textareaObject.form

實(shí)例

本例返回 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>