HTML5之HTML元素擴展(下)—增強的Form表單元素值得關注
來源:易賢網(wǎng) 閱讀:1469 次 日期:2016-07-22 14:39:30
溫馨提示:易賢網(wǎng)小編為您整理了“HTML5之HTML元素擴展(下)—增強的Form表單元素值得關注”,方便廣大網(wǎng)友查閱!

在HTML5增強的元素中,最值得關注的就是表單元素。在HTML5中,表單已經(jīng)做了重大的修整,一些以前需要通過JavaScript編碼實現(xiàn)的功能現(xiàn)在無需編碼就可輕松實現(xiàn)。在開始討論之前,需要注意一點:

在HTML5中,表單控件是可以處于其所屬的一個或多個表單的外部的。所以,表單控件像fieldset,label,input這些都加入了form屬性,用于標識表單控件所屬的表單。

在HTML5中:

1. form元素自身增加了兩個新的屬性:autocomplete和novalidate。autocomplete屬性用于啟用“下拉建議列表”功能,novalidate屬性用于關閉表單驗證功能,這在測試時會很有用。

2. fieldset元素增加了三個新屬性:disable、name和form。disable屬性用于禁用fieldset,name屬性用于設置fieldset的名稱,form屬性的值是fieldset所屬的一個或多個表單的ID,這個前面也說了,當fieldset被置于表單的外部時,你必須設置該fieldset標簽的form屬性,這樣fieldset就可以正確地與一個或多個表單關聯(lián)起來。

3. label元素除for屬性外,只增加了form屬性。這里值得一提的是for屬性,我以前還真沒注意過。for屬性用于指定label附屬的表單控件,這樣點擊這個label時會讓附屬的表單控件獲得焦點,比如:

代碼如下:

<form action="demo_form.asp" id="form1">

<label for="name">Click Me</label><input id="name" type="text"></input>

<input type="submit" value="Submit" />

</form>

點擊"Click Me",則后面的輸入框會獲得焦點。

4. input元素引入了一些新的類型與屬性,增強了表單的可用性。這些新的輸入類型,用于對數(shù)據(jù)進行組織和歸類,非常有用,遺憾的是并沒有哪一個瀏覽器能很好的支持所有的這些類型。

除了原來button,text,submit,checkbox,radio,select,password的類型,HTML5加入了下列新的input類型:

顏色:color

各種日期:date, datetime, datetime-local, month, week, time

電子郵件:email

數(shù)字:number

范圍:range

搜索:search

電話:tel

URL類型:url

可以運行下面的例子來查看不同瀏覽器的支持情況:

代碼如下:

<form action="demo_form.asp">

Select your favorite color: <input type="color" name="favcolor" />

Birthday: <input type="date" name="bday" />

Birthday (date and time): <input type="datetime" name="bdaytime" />

Birthday (date and time): <input type="datetime-local" name="bdaytime" />

Birthday (month and year): <input type="month" name="bdaymonth" />

Select a time: <input type="time" name="usr_time" />

Select a week: <input type="week" name="week_year" />

Quantity (between 1 and 5): <input type="number" name="quantity" min="1" max="5" />

Quantity(between 1 and 10): <input type="range" name="points" min="1" max="10" />

Search Google: <input type="search" name="googlesearch" />

Telephone: <input type="tel" name="usrtel" />

Add your homepage: <input type="url" name="homepage" />

E-mail: <input type="email" name="usremail" />

<input src="submitbutton.png" type="submit" />

</form>

下面這些是新增加的input屬性:

autocomplete:自動顯示以前輸入過的信息,取值"on"或者"off"。適用于text, search, url, tel, email, password, datepickers, range, and color類型。

autofocus:頁面加載完成后自動獲取到焦點。

form:指定input所屬的form,可以是多個。

formaction:指定form提交后處理這個input的頁面(URL)或文件。  

formenctype:指定form提交后數(shù)據(jù)如何編碼。

formmethod:指定發(fā)送form數(shù)據(jù)的HTTP方法,會覆蓋相應form的HTTP方法。

formnovalidate:提交前不檢查數(shù)據(jù)的有效性。

formtarget:指定在那個地方顯示form提交后response的內(nèi)容。

height, width:輸入框長和寬,只適用于image類型?!?/P>

max,min:輸入值的最大值和最小值。適用于有意義的number,range, 日期類型?! ?/P>

multiple:是否允許輸入多個值,適用于email和file類型。

pattern:指定驗證輸入值的正則表達式,適用于text,search,url,tel,email,password。

placeholder:輸入前的提示信息,適用于text,search,url,tel,email,password。

required:是否是必填項,如果不填必填項,則表單不能提交,適用于text, search, url, tel, email, password, date pickers, number, checkbox, radio, 和file類型。

step:輸入自動增長時的步長值,適用于number, range, date, datetime, datetime-local, month, time和week類型。

list:輸入項的候選列表,需要和datalist元素配合使用,list屬性可用在這些類型上:text、search、url、tel、email、date、number、range和color,目測在FireFox上有效??匆粋€小例子:

代碼如下:

<fieldset>

<legend> Favorites </legend>

<p>

<label>

<input type="text" name="favorites" list="options">

<datalist id="options">

<option value="A">

<option value="B">

<option value="C">

</datalist>

</label>

</p>

</fieldset>

下面的例子嘗試使用了各個屬性,可以運行在不同的瀏覽器下查看實際效果:

代碼如下:

<form action="demo_form.asp">

E-mail: <input type="email" name="email" autocomplete="on" />

Image: <input type="image" src="img_submit.gif" alt="Submit" width="48" height="48"/>

Enter a date before 1980-01-01:<input type="date" name="bday" max="1979-12-31">

Enter a date after 2000-01-01:<input type="date" name="bday" min="2000-01-02">

Quantity (between 1 and 5):<input type="number" name="quantity" min="1" max="5" />

Select images: <input type="file" name="img" multiple="multiple" />

Country code: <input type="text" name="country_code" pattern="[A-Za-z]{3}" title="Three letter country code" />

First Name: <input type="text" name="fname" placeholder="First name" />

Username: <input type="text" name="usrname" required="required" />

Number: <input type="number" name="points" step="3" />

<input type="submit" />

<input type="submit" formaction="demo_admin.asp" value="Submit as admin" />

<input type="submit" formenctype="multipart/form-data" value="Submit as Multipart/form-data" />

<input type="submit" formmethod="post" formaction="demo_post.asp" value="Submit using POST" />

<input type="submit" formnovalidate="formnovalidate" value="Submit without validation" />

<input type="submit" formtarget="_blank" value="Submit to a new window" />

</form>

<form action="demo_form.asp" id="form1">

First name: <input type="text" name="fname" />

<input type="submit" value="Submit" />

</form>

Last name: <input type="text" name="lname" form="form1" />

建議:雖然并不是所有的瀏覽器都支持全部的類型,但是還是鼓勵大家使用這些新類型,因為即使瀏覽器不支持,只不過是會退化成簡單的text輸入框而已。

更多信息請查看網(wǎng)頁制作
由于各方面情況的不斷調(diào)整與變化,易賢網(wǎng)提供的所有考試信息和咨詢回復僅供參考,敬請考生以權威部門公布的正式信息和咨詢?yōu)闇剩?/div>

2025國考·省考課程試聽報名

  • 報班類型
  • 姓名
  • 手機號
  • 驗證碼
關于我們 | 聯(lián)系我們 | 人才招聘 | 網(wǎng)站聲明 | 網(wǎng)站幫助 | 非正式的簡要咨詢 | 簡要咨詢須知 | 加入群交流 | 手機站點 | 投訴建議
工業(yè)和信息化部備案號:滇ICP備2023014141號-1 云南省教育廳備案號:云教ICP備0901021 滇公網(wǎng)安備53010202001879號 人力資源服務許可證:(云)人服證字(2023)第0102001523號
聯(lián)系電話:0871-65099533/13759567129 獲取招聘考試信息及咨詢關注公眾號:hfpxwx
咨詢QQ:526150442(9:00—18:00)版權所有:易賢網(wǎng)