HTML DOM type 屬性
定義和用法
type 屬性可返回確認(rèn)按鈕的表單元素類(lèi)型。對(duì)于確認(rèn)按鈕,該屬性總是 "submit"。
語(yǔ)法
submitObject.type
實(shí)例
下面的例子可返回確認(rèn)按鈕的表單元素類(lèi)型:
<html>
<head>
<script type="text/javascript">
function alertType()
{
alert(document.getElementById("submit1").type
)
}
</script>
</head>
<body>
<form>
<input type="submit" id="submit1" onclick="alertType()" />
</form>
</body>
</html>