HTML DOM maxLength 属性

定义和用法

maxLength 属性可设置或返回密码域中所允许的最大字符数。

语法

  1. passwordObject.maxLength=number_of_chars

实例

下面的例子可显示指定的密码域中所允许的最大字符数:

  1. <html>
  2. <head>
  3. <script type="text/javascript">
  4. function alertLength()
  5. {
  6. alert(document.getElementById("password1").maxLength)
  7. }
  8. </script>
  9. </head>
  10. <body>
  11.  
  12. <form>
  13. <input type="password" id="password1" maxLength="8" />
  14. <input type="button" id="button1" onclick="alertLength()"
  15. value="Alert maxLength" />
  16. </form>
  17.  
  18. </body>
  19. </html>