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

HTML DOM size 屬性

定義和用法

size 屬性設(shè)置或返回文本域的尺寸(以字符數(shù)計(jì))

語(yǔ)法

textObject.size=number_of_char

實(shí)例

下面的例子提示出了文本域的尺寸:

<html>
<head>
<script type="text/javascript">
function fieldSize()
  {
  alert(document.getElementById("name").size)
  }
</script>
</head>

<body>
<form>
Name:
<input type="text" id="name" value="Mickey Mouse" size="20" maxlength="30" />
<br /><br />
<input type="button" onclick="fieldSize()" value="Alert size" />
</form>
</body>

</html>