프로퍼티 |
타입 |
설명 |
|
$autofocus |
string |
New in HTML5. Specifies that a text area should automatically get focus when the page loads. Default 'autofocus' |
|
$cols |
integer |
Specifies the visible width of a text area. |
|
$disabled |
string |
Specifies that a text area should be disabled. Value: disabled |
|
$form |
string |
New in HTML5. Specifies one or more forms the text area belongs to |
|
$maxlength |
integer |
New in HTML5. Specifies the maximum number of characters allowed in the text area |
|
$name |
string |
Specifies the name for a text area. |
|
$placeholder |
string |
New in HTML5. Specifies a short hint that describes the expected value of a text area |
|
$readonly |
string |
Specifies that a text area should be read-only. Value: readonly |
|
$required |
string |
New in HTML5. Specifies that a text area is required/must be filled out, Default 'required' |
|
$rows |
integer |
Specifies the visible number of lines in a text area |
|
$wrap |
string |
Default 'hard', 'soft' |
|