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

HTML DOM form 屬性

定義和用法

form 屬性可返回對(duì)包含該重置按鈕的表單的引用。

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

語法

resetObject.form

實(shí)例

下面的例子將返回該重置按鈕所屬的表單的 id:

<html>
<body>

<form id="form1">
<input type="reset" id="reset1" />
</form>

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

</body>
</html>