中文字幕一区二区人妻电影,亚洲av无码一区二区乱子伦as ,亚洲精品无码永久在线观看,亚洲成aⅴ人片久青草影院按摩,亚洲黑人巨大videos

Password type 屬性

Password 對象參考手冊 Password 對象

定義和用法

type 屬性可返回表單元素的類型。

對于密碼域,該屬性總是 "password"。

語法

passwordObject.type

瀏覽器支持

Internet ExplorerFirefoxOperaGoogle ChromeSafari

所有主要瀏覽器都支持 type 屬性


實(shí)例

實(shí)例

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

<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>小白教程(json.cn)</title>
<script>
function displayResult(){
????var x=document.getElementById("pwd").type;
????alert(x);
}
</script>
</head>
<body>

<form>
密碼: <input type="password" id="pwd">
</form>
<button type="button" onclick="displayResult()">顯示 input 類型</button>

</body>
</html>

運(yùn)行代碼 ?

Password 對象參考手冊 Password 對象其他擴(kuò)展