HTML DOM Password defaultValue 屬性

2023-04-14 14:08 更新
Password 對(duì)象參考手冊(cè)Password 對(duì)象

定義和用法

defaultValue 屬性可設(shè)置或返回密碼域的默認(rèn)值。

注意: 該默認(rèn)值是在 HTML "value" 屬性中規(guī)定的默認(rèn)值。

語法

設(shè)置 defaultValue 屬性:

passwordObject.defaultValue="value"

返回 defaultValue 屬性:

passwordObject.defaultValue

瀏覽器支持

Internet Explorer Firefox Opera Google Chrome Safari

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


實(shí)例

實(shí)例

下面的例子可獲得密碼域的默認(rèn)值:

<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<script>
function displayResult(){
    var x=document.getElementById("pwd").defaultValue;
    alert(x);
}
</script>
</head>
<body>

<form>
密碼: <input type="password" id="pwd" value="thgrt456">
</form>
<button type="button" onclick="displayResult()">顯示默認(rèn)值</button>

</body>
</html>

嘗試一下 ?

Password 對(duì)象參考手冊(cè)Password 對(duì)象
以上內(nèi)容是否對(duì)您有幫助:
在線筆記
App下載
App下載

掃描二維碼

下載編程獅App

公眾號(hào)
微信公眾號(hào)

編程獅公眾號(hào)