Hidden type 屬性
Hidden 對象定義和用法
type 屬性可返回表單元素的類型。
對于 hidden 對象,該屬性總是 "hidden"。
語法
hiddenObject.type
瀏覽器支持
所有主要瀏覽器都支持 type 屬性
實例
實例
下面的例子返回了該隱藏域的表單元素類型:
<html>
<head>
<script>
function displayResult()
{
var x=document.getElementById("hidden1").type;
alert(x);
}
</script>
</head>
<body>
<form>
<input type="hidden" id="hidden1">
</form>
<button type="button" onclick="displayResult()">Display input type</button>
</body>
</html>
<head>
<script>
function displayResult()
{
var x=document.getElementById("hidden1").type;
alert(x);
}
</script>
</head>
<body>
<form>
<input type="hidden" id="hidden1">
</form>
<button type="button" onclick="displayResult()">Display input type</button>
</body>
</html>
嘗試一下 ?
Hidden 對象
更多建議: