Hidden form 屬性
Hidden 對(duì)象定義和用法
form 屬性可返回對(duì)包含隱藏輸入域的表單對(duì)象的引用。
該屬性返回 form 對(duì)象。
語(yǔ)法
hiddenObject.form
瀏覽器支持
所有主要瀏覽器都支持 form 屬性
實(shí)例
實(shí)例
下面的例子返回了該隱藏輸入域所屬的表單的 id:
<html>
<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>
<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>
嘗試一下 ?
Hidden 對(duì)象
更多建議: