您好,登錄后才能下訂單哦!
這篇文章主要介紹“HTML各種表單元素模板及寫法分享”,在日常操作中,相信很多人在HTML各種表單元素模板及寫法分享問題上存在疑惑,小編查閱了各式資料,整理出簡單好用的操作方法,希望對大家解答”HTML各種表單元素模板及寫法分享”的疑惑有所幫助!接下來,請跟著小編一起來學習吧!
input中有很多屬性type="text"表示文本框;
name是連接前端后端的橋梁
value屬性,包含的默認字符串
size寬度
maxlength接受的最多字符數
placeholder占位符
required必填屬性
比如寫賬號和密碼框時可以這么寫:
賬號: <input type="text" name="username" value="" size="30" maxlength="6" placeholder="手機\郵箱\用戶名" required="required" /><br>
password為***一般用于密碼
密碼: <input type="password" src="" size="30" maxlength="6" /><br>
提交按鈕
<input type="submit" value="登錄" /> <input type="reset" value="重置" />
單選框
label的兩種用法,點擊文字可以勾選
checked為默認選擇項
性別:<label><input type="radio" name="gender" checked="checked">男</label> <input type="radio" name="gender" id="woman"><label for="woman">女</label>
復選框
興趣愛好: <label><input type="checkbox" name="interest" id="" value="">讀書</label> <label><input type="checkbox" name="interest" id="" value="">游泳</label> <label><input type="checkbox" name="interest" id="" value="">籃球</label>
列表框
這里用selected為默認
size在這里不是列表寬度
multiple多選
居住地:<select name="city" size="2" multiple="multiple"> <option value="NJ">南京</option> <option value="SH" selected="selected">上海</option> <option value="GZ">廣州</option> </select>
多行文本域沒有value
rows列數cols行數
簡介:<textarea name="showText" rows="3" cols="10" placeholder="請輸入您的簡介"></textarea>
文件域
照片:<input type="file" name="" id="" value="" />
表單郵箱
郵箱:<input type="email" name="email" id="" value="" />
網址 url
個人主頁: <input type="url" name="" id="" value="" />
數字,step代表步長
請輸入數字: <input type="number" name="" id="" value="" min="1" max="100" step="3" />
滑塊
<input type="range"/>
搜索
搜索:<input type="search" name="" id="" value=""/>
普通按鈕
<input type="button" name="" id="" value="按鈕" /> <button type="button">按鈕</button>
提交按鈕其他表示方式
<input type="submit" name="" id="" value="提交按鈕" /> <button type="submit">提交按鈕</button> <input type="image" src=" ../***.png" />
到此,關于“HTML各種表單元素模板及寫法分享”的學習就結束了,希望能夠解決大家的疑惑。理論與實踐的搭配能更好的幫助大家學習,快去試試吧!若想繼續學習更多相關知識,請繼續關注億速云網站,小編會繼續努力為大家帶來更多實用的文章!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。