输入元素 input
用法
用于渲染输入元素(表单元素)input。
php
input
(
set::type('text'),
set::name('account'),
set::placeholder('请输入账号'),
set::required(true),
set::autofocus(true),
);
input
(
set::type('password'),
set::name('password'),
set::placeholder('请输入密码'),
set::required(true),
);
input
(
set::type('file'),
set::name('avatar'),
);
html
<input
class="form-control is-required"
type="text"
autocomplete="off"
name="account"
placeholder="请输入账号"
autofocus
id="account"
>
<input
class="form-control is-required"
type="password"
autocomplete="off"
name="password"
placeholder="请输入密码"
id="password"
>
<input
class="form-control"
type="file"
autocomplete="off"
name="avatar"
id="avatar"
>
属性
属性名 | 类型 | 默认值 | 说明 |
---|---|---|---|
type | string | 'text' | 输入元素的类型 |
name | string | - | 输入元素的控件名称 |
id | string | - | 元素 id |
class | string | 'form-control' | 元素类名 |
value | string | - | 输入元素的初始值 |
required | bool | - | 输入元素是否为必填 |
placeholder | string | - | 输入元素的简短提示 |
autofocus | bool | - | 输入元素是否自动获得焦点 |
autocomplete | bool | false | 输入元素是否启用自动填充特性提示 |
disabled | bool | - | 是否禁用输入元素 |