亚洲乱码中文字幕综合,中国熟女仑乱hd,亚洲精品乱拍国产一区二区三区,一本大道卡一卡二卡三乱码全集资源,又粗又黄又硬又爽的免费视频

HTML DOM type 屬性

定義和用法

type 屬性可返回確認(rèn)按鈕的表單元素類型。對(duì)于確認(rèn)按鈕,該屬性總是 "submit"。

語法

submitObject.type

實(shí)例

下面的例子可返回確認(rèn)按鈕的表單元素類型:

<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>