指令+tab
结构: !
内容:{text}
属性:[attr],#id,.class
重复: *
父子: >
兄弟: +
父级: ^
分组: (emmet)
序号: $,$@
表格: <table>
标题: <caption>
表头: <thead>
表体: <tbody>
表尾: <tfoot>
行: <tr>
列/单元格:<td>,<th>
水平方向列合并: td/th.colspan
垂直方向列合并: td/th.rowspan
<form>
: 表单控件的容器
<fieldset>
: 表单控件分组容器
<label>
: 控件标签名称
<input>
: 输入控件,类型由 type 属性决定
<select>+<option>
: 下载列表框
<input>+<datalist>+<option>
: 预定义列表框
<textarea>
: 文本域(多行文本框)
<button>
: 按钮,默认同步提交(type=”submit”)
form.id
: 表单引用
form.action
: 表单处理脚本
form.method
: 表单提交方式(GET/POST)
form.enctype
: 表单数据编码方式
form.onsubmit
: 表单提交事件
input.type
: 输入控件类型
input.type="text"
: 单行文本框(默认)
input.type="email"
: 邮箱控件
input.type="password"
: 密码控件(密文)
input.type="number"
: 数值控件
input.type="date"
: 日期控件
input.type="color"
: 拾色器
input.type="url"
: URL 控件
input.type="search"
: 搜索框控件
input.type="hidden"
: 隐藏域控件
input.type="file"
: 文本域控件
input.type="radio"
: 单选按钮
input.type="checkbox"
: 复选框
select.name+option.value
: 下拉列表框
input.list+datalist.id
: 预定义列表框
textarea.cols/rows
: 文本域(多行文本框)
button.type
: 按钮(默认提交:type=”submit”)