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

HTML DOM disabled 屬性

定義和用法

form 屬性可返回隊包含該文本域的表單的引用。

若成功,該屬性返回一個表單對象。

語法

textObject.form

實例

下面的例子為文本域所屬的表單設置了 id:

<html>
<body>

<form id="form1">
<input type="text" id="text1" />
</form>

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

</body>
</html>