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

HTML DOM type 屬性

定義和用法

type 屬性可設(shè)置表單元素的類型。對于密碼域,該屬性總是 "password"。

語法

passwordObject.type

實(shí)例

下面的例子返回了該密碼域的表單元素類型:

<html>
<body>

<form>
<input type="password" id="password1" />
</form>

<script type="text/javascript">
x=document.getElementById("password1");
document.write("Form element type is: ");
document.write(x.type);
</script>

</body>
</html>