Password maxLength 属性
Password 对象的 maxLength 属性可设置或返回密码域中所允许的最大字符数
语法
设置 maxLength 属性
passwordObject.maxLength= integer
返回 maxLength 属性
passwordObject.maxLength
浏览器支持
所有主要浏览器都支持 maxLength 属性
范例
显示指定的密码域中所允许的最大字符数
<script> function displayResult(){ var x=document.getElementById("pwd").maxLength; alert(x); } </script> <form> 密码: <input type="password" id="pwd" maxlength="8"> </form> <button type="button" onclick="displayResult()">显示允许输入的最多字符数</button>