欧美bbbwbbbw肥妇,免费乱码人妻系列日韩,一级黄片

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>