亚洲乱码中文字幕综合,中国熟女仑乱hd,亚洲精品乱拍国产一区二区三区,一本大道卡一卡二卡三乱码全集资源,又粗又黄又硬又爽的免费视频

HTML DOM maxLength 屬性

定義和用法

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

語法

passwordObject.maxLength=number_of_chars

實(shí)例

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

<html>
<head>
<script type="text/javascript">
function alertLength()
  {
  alert(document.getElementById("password1").maxLength)
  }
</script>
</head>
<body>

<form>
<input type="password" id="password1" maxLength="8" />
<input type="button" id="button1" onclick="alertLength()"
value="Alert maxLength" />
</form>

</body>
</html>