表單控件
單行文本框:
<input type="text" value="text">
密碼文本框:
<input type="password" >
命令按鈕:
<input type="button" value="按鈕">
提交命令按鈕:
<input type="submit">
重置命令按鈕:
<input type="reset">
文件上傳輸入:
<input type="file">
文本區:
<textarea cols="10" rows="5"></textarea>
隱藏元素:
<input type="hidden">
列表框:
<select size="2">
<option selected="select">選擇1</option>
<option>選擇2</option>
</select>
下拉列表框:(單選列表框)
<select >
<option>選擇1</option>
<option selected="selected">選擇2</option>
</select>
復選(列表框)
<select size="2"multiple="multiple">
<option>選擇1</option>
<option selected="selected">選擇2</option>
</select>
單選按鈕:
<input type="radio" checked="checked">選擇1
<input type="radio" >選擇2
<input type="radio" >選擇3
復選框:
<input type="checkbox" checked="checked">選擇1
<input type="checkbox" >選擇2
<input type="checkbox" checked="checked>選擇3
表單控件