表單中的單選按鈕能夠設置如下幾個屬性:value、name、checkedhtml
文本域經過 標籤來設定,當用戶要在表單中鍵入字母、數字等內容時,就會用到文本域。 文本域爲只有一行的文本框,效果以下:服務器
<form> account_ : <input type="text" name="firstname"><br> password: <input type="password" name="lastname"> </form>
input type
的值改成password
來說文本域改成密碼字段專用(即輸入不可見 **或···)<textarea rows="4" cols="30"> 我是一個文本框。rows爲行數,cols爲列數 </textarea>
<form action=""> <input type="button" value="This is a button">這個按鈕下什麼都沒有 </form>
<input type="radio">
code
<input type="checkbox">
orm
<form> <input type="radio" name="sex" value="male">Male <input type="radio" name="sex" value="female">Female<br> <input type="checkbox" name="vehicle" value="Bike">I have a bike <input type="checkbox" name="vehicle" value="Car">I have a car </form>
name
屬性的單選框爲一組,同一組的按鈕才能起到單選的做用<form action=""> <select name="cars"> <option value="null">請選擇性別</option> <optgroup label="正常"> <option value="1">男</option> <option value="2">女</option> <optgroup label="特殊"> <option value="3" selected>不詳</option> </select> </form>
<optgroup label="分組名稱">
列表選項分組(標籤)(不可作爲選項之一,只作分組之用)option
標籤中 添加selected
元素即爲預選項,如沒有,則默認爲第一個option
<input type="submit">
定義了提交按鈕.htm
顧名思義,提取表單中的數據到某處input
<input type="reset">
定義重置按鈕it
<input type="reset" name="button" id="button" value="重置">
<form> <fieldset> <legend>邊框上的文字:</legend> account_ : <input type="text" name="firstname"><br> password: <input type="password" name="lastname"> </fieldset> </form>
<label>
標籤表單內的 標籤沒有什麼特殊的效果 ,只是在用鼠標點擊標籤時會觸發旁邊的io
控件(好比單選框)但須要label
的for屬性等於input
的id
屬性ast
for
屬性可把 label 綁定到另一個元素。請把for
屬性的值設置爲相關元素的id
屬性的值。form
label
確定不止是這麼用的,可是目前···