属性
New
:HTML5 中的新属性。
属性 | 值 | 描述 |
---|---|---|
autofocus New
|
autofocus | 规定当页面加载时,文本区域自动获得焦点。 |
cols | number | 规定文本区域内可见的宽度。 |
disabled | disabled | 规定禁用文本区域。 |
form New
|
form_id | 定义文本区域所属的一个或多个表单。 |
maxlength New
|
number | 规定文本区域允许的最大字符数。 |
name | text | 规定文本区域的名称。 |
placeholder New
|
text | 规定一个简短的提示,描述文本区域期望的输入值。 |
readonly | readonly | 规定文本区域为只读。 |
required New
|
required | 规定文本区域是必需的/必填的。 |
rows | number | 规定文本区域内可见的行数。 |
wrap New
|
hard soft | 规定当提交表单时,文本区域中的文本应该怎样换行(soft不换行,hard换行包含换行符,必须指定 cols 属性。) |
下面就单个属性进行讲解
autofocus
自动聚焦
required
注意
: IE 9 及更早 IE 版本,Safari 浏览器不支持 required 属性。
maxlength
注意
:Opera 或者 Internet Explorer 9 及之前的版本不支持 <textarea> 标签的 maxlength 属性。