欧美bbbwbbbw肥妇,免费乱码人妻系列日韩,一级黄片

HTML DOM type 屬性

定義和用法

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

語(yǔ)法

passwordObject.type

實(shí)例

下面的例子返回了該密碼域的表單元素類(lèi)型:

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