Password maxLength 屬性

Password 對(duì)象參考手冊(cè) Password 對(duì)象

定義和用法

maxLength 屬性可設(shè)置或返回密碼域中所允許的最大字符數(shù)。

語法

設(shè)置 maxLength 屬性:

passwordObject.maxLength=integer

返回 maxLength 屬性:

passwordObject.maxLength


瀏覽器支持

Internet ExplorerFirefoxOperaGoogle ChromeSafari

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


實(shí)例

實(shí)例

下面的例子可顯示指定的密碼域中所允許的最大字符數(shù):

<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>W3Cschool在線教程(w3cschool.cn)</title>
<script>
function displayResult(){
    var x=document.getElementById("pwd").maxLength;
    alert(x);
}
</script>
</head>
<body>

<form>
密碼: <input type="password" id="pwd" maxlength="8">
</form>
<button type="button" onclick="displayResult()">顯示允許輸入的最多字符數(shù)</button>

</body>
</html>

嘗試一下 ?


Password 對(duì)象參考手冊(cè) Password 對(duì)象