天天看點

Input Text size 屬性

Input Text size 屬性

Input Text 對象

設定文本域的尺寸(以字元數計):

document.getElementById("myText").size = "50";

size 屬性用于設定或傳回文本域的 size 屬性值。

size 屬性設定或傳回文本域的尺寸(以字元數計)。

預設值為 20。

提示: 如果要設定或傳回 password 字段允許輸入的字元數,請使用

maxLength 屬性。

Input Text size 屬性
Input Text size 屬性
Input Text size 屬性
Input Text size 屬性
Input Text size 屬性

所有主流浏覽器都支援 size 屬性

傳回 size 屬性:

textObject.size

設定 size 屬性:

textObject.size=number

值<

描述

number

軌道了文本域的尺寸,以字元計。預設值為 20。

傳回值:

數字,代表了文本域的尺寸,以字元計

擷取文本域的尺寸:

var x = document.getElementById("myText").size;

x 輸出結果為:

30

HTML 參考手冊: HTML <input> size 屬性

Input Text size 屬性