表單元件名稱 | HTML語法 |
文字方塊(單行) | <input type='text' name='T1' value='預設值'> |
密碼方塊 | <input type='password' name='T2' value='123'> |
日期方塊 | <input type='date' > |
年月方塊 | <input type='month' > |
年週方塊 | <input type='week' > |
數字方塊 | <input type='number' > |
搜尋方塊 | <input type='search' > |
滑動方塊 | <input type='range' > |
核取方塊(複選) | <input type='checkbox' name='C1' value='ON' > |
選項按鈕(單選) | <input type='radio' name='R1' > |
顏色選擇器 | <input type='color' value='#ff0000'> |
按鈕 | <input type='button' > 送出</button> |
文字區域(多行) | <textarea name='t1' cols='10' rows='5'>預設值</textarea> |
下拉選單 | <select size='1' name='s1' multiple>
<option value='o1'>項目1</option>
<option value='o2'>項目2</option>
<option value='o3'>項目2</option>
</select>
|
| text=> email、url、tel、加上 required 驗證不同資料 |