HTML DOM size 属性

定义和用法

size 属性可设置或返回密码域的大小(以字符数计)。

语法

  1. passwordObject.size=number_of_chars

实例

下面的例子更改了密码域的大小:

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