HTML DOM Hidden form 属性
最后更新于:2022-03-26 22:24:02
Hidden form 属性
定义和用法
form 属性可返回对包含隐藏输入域的表单对象的引用。
该属性返回 form 对象。
语法
hiddenObject.form
浏览器支持
所有主要浏览器都支持 form 属性
实例
实例
下面的例子返回了该隐藏输入域所属的表单的 id:
<html>
<head>
<script>
function displayResult()
{
var x=document.getElementById(“hidden1”).form.id;
alert(x);
}
</script>
</head>
<body>
<head>
<script>
function displayResult()
{
var x=document.getElementById(“hidden1”).form.id;
alert(x);
}
</script>
</head>
<body>
<form id=”form1″>
<input type=”hidden” id=”hidden1″>
</form>
<button type=”button” onclick=”displayResult()”>显示表单form的id</button>
</body>
</html>