html 常用标签-2
1. Emmet 语法
指令+tab
结构:
!
内容:
{text}
属性:
[attr],#id,.class
重复:
*
父子:
>
兄弟:
+
父级:
^
分组:
(emmet)
序号:
$,$@
2. 表格元素
2.1 标签
表格:
<table>
标题:
<caption>
表头:
<thead>
表体:
<tbody>
表尾:
<tfoot>
行:
<tr>
列/单元格:
<td>,<th>
2.2 属性
水平方向列合并:
td/th.colspan
垂直方向列合并:
td/th.rowspan
3. 表单
3.1 常用标签
<form>
: 表单控件的容器<fieldset>
: 表单控件分组容器<label>
: 控件标签名称<input>
: 输入控件,类型由 type 属性决定<select>+<option>
: 下载列表框<input>+<datalist>+<option>
: 预定义列表框<textarea>
: 文本域(多行文本框)<button>
: 按钮,默认同步提交(type=”submit”)
3.2 常用属性
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”)