HTML DOM alt 屬性
定義和用法
form 屬性可返回對包含隱藏輸入域的表單對象的引用。
語法
hiddenObject.form
實(shí)例
下面的例子返回了該隱藏輸入域所屬的表單的 id:
<html>
<body>
<form id="form1">
<input type="hidden" id="hidden1" />
</form>
<p>The id of the form containing the hidden element is:
<script type="text/javascript">
x=document.getElementById('hidden1');
document.write(x.form.id
);
</script></p>
</body>
</html>