文本類:
文本框 <input type = "text" />
密碼框 <input type = "password" />
隱藏域 <input type = "hidden" />
文本域 <textarea></textarea>
按鈕類:
普通按鈕 <input type = "button" value = "text" />
提交按鈕 <input type = "submit" value = "提交" />
重置按鈕 <input type = "reset" value = "重置" />
圖片按鈕 <input type = "image" />
選擇類:
<input type = "radio" value = "1" id = "ra1">
<label for = "ra1">男</label>
<input type = "checkbox" value = "" id = ""><label for = ""></label>
<select>
<option vale = "1"></option>
</select>
<input type = "file" />