千鋒前端浠浠呀老師HTML+CSS教程,零基礎(chǔ)web前端開發(fā)入門必看視頻

表單控件:
??????<input type=”text”>?文本框
??????<input type=”password”>?密碼框
??????<input type=”submit”>?提交按鈕
??????<input type=”reset”>?重置按鈕
??????<input type=”button”>?普通按鈕
??????<input type=”image” src=””>?圖片按鈕 具有提交功能
??????<button type=”button/submit”></button>?按鈕
?
新增 :
??????<input type=”radio”?/> 單選 ?需要添加相同的name實現(xiàn)單選
??????<input type=”checkbox”>?多選 ?復(fù)選
<select> <option></option> </select>?下拉菜單
??????multiple?多選,按住CTRL點擊實現(xiàn)多選
??????size?????一次顯示幾個
??????name???放在select上
??????value???放在option上,如果沒有value,option標簽內(nèi)的就是value
<input type=”file” multiple>?上傳文件 ?multiple多選
<input type=”hidden”>?隱藏控件 ?客戶看不見,方便數(shù)據(jù)的處理
<textarea></textarea>?多行文本域 ?cols 列數(shù) ?rows行數(shù)
??????resize: none;禁止拖拽 這是一個css屬性
標簽: