HTML5 表單屬性

2022-05-23 14:21 更新

HTML5 表單屬性

在之前的章節(jié)內(nèi)容中,我們介紹了HTML5表單元素,進(jìn)一步的,在本節(jié)內(nèi)容中,你會(huì)了解到HTML5的表單屬性。

HTML5 新的表單屬性

HTML5 的 <form> 和 <input>標(biāo)簽添加了幾個(gè)新屬性.

<form>新屬性:

  • autocomplete

  • novalidate

<input>新屬性:

  • autocomplete

  • autofocus

  • form

  • formaction

  • formenctype

  • formmethod

  • formnovalidate

  • formtarget

  • height and width

  • list

  • min and max

  • multiple

  • pattern (regexp)

  • placeholder

  • required

  • step


<form> / <input> autocomplete 屬性

autocomplete 屬性規(guī)定 form 或 input 域應(yīng)該擁有自動(dòng)完成功能。

當(dāng)用戶(hù)在自動(dòng)完成域中開(kāi)始輸入時(shí),瀏覽器應(yīng)該在該域中顯示填寫(xiě)的選項(xiàng)。

提示: autocomplete 屬性有可能在 form元素中是開(kāi)啟的,而在input元素中是關(guān)閉的。

注意: autocomplete 適用于 <form> 標(biāo)簽,以及以下類(lèi)型的 <input> 標(biāo)簽:text, search, url, telephone, email, password, datepickers, range 以及 color。

Opera Safari Chrome Firefox Internet Explorer

實(shí)例

HTML form 中開(kāi)啟 autocomplete (一個(gè) input 字段關(guān)閉 autocomplete ):

<form action="demo-form.php" autocomplete="on">
 First name:<input type="text" name="fname"><br>
 Last name: <input type="text" name="lname"><br>
 E-mail: <input type="email" name="email" autocomplete="off"><br>
 <input type="submit">
</form>  

嘗試一下 ?

提示:某些瀏覽器中,您可能需要啟用自動(dòng)完成功能,以使該屬性生效。


<form> novalidate 屬性

novalidate 屬性的一個(gè)boolean 屬性.

novalidate 屬性規(guī)定在提交表單時(shí)不應(yīng)該驗(yàn)證 form 或 input 域。

Opera Safari Chrome Firefox Internet Explorer

實(shí)例

無(wú)需驗(yàn)證提交的表單數(shù)據(jù)

<form action="demo-form.php" novalidate>
 E-mail: <input type="email" name="user_email">
 <input type="submit">
</form>

嘗試一下 ?



<input> autofocus 屬性

autofocus 屬性是一個(gè) boolean 屬性.

autofocus 屬性規(guī)定在頁(yè)面加載時(shí),域自動(dòng)地獲得焦點(diǎn)。

Opera Safari Chrome Firefox Internet Explorer

實(shí)例

讓 "First name" input 輸入域在頁(yè)面載入時(shí)自動(dòng)聚焦:

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

嘗試一下 ?



<input> form 屬性

form 屬性規(guī)定輸入域所屬的一個(gè)或多個(gè)表單。

提示:如需引用一個(gè)以上的表單,請(qǐng)使用空格分隔的列表。

Opera Safari Chrome Firefox Internet Explorer

實(shí)例

位于form表單外的input 字段引用了 HTML form (該 input 表單仍然屬于form表單的一部分):

<form action="demo-form.php" id="form1">
 First name: <input type="text" name="fname"><br>
 <input type="submit" value="Submit">
</form>

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

嘗試一下 ?



<input> formaction 屬性

The formaction 屬性用于描述表單提交的URL地址.

The formaction 屬性會(huì)覆蓋<form> 元素中的action屬性.

注意: The formaction 屬性用于 type="submit" 和 type="image".

Opera Safari Chrome Firefox Internet Explorer

實(shí)例

以下HTMLform表單包含了兩個(gè)不同地址的提交按鈕:

<form action="demo-form.php">
 First name: <input type="text" name="fname"><br>
 Last name: <input type="text" name="lname"><br>
 <input type="submit" value="Submit"><br>
 <input type="submit" formaction="demo-admin.php"
  value="Submit as admin">
</form>

嘗試一下 ?



<input> formenctype 屬性

formenctype 屬性描述了表單提交到服務(wù)器的數(shù)據(jù)編碼 (只對(duì)form表單中 method="post" 表單)

formenctype 屬性覆蓋 form 元素的 enctype 屬性。

注意: 該屬性與 type="submit" 和 type="image" 配合使用。

Opera Safari Chrome Firefox Internet Explorer

實(shí)例

第一個(gè)提交按鈕已默認(rèn)編碼發(fā)送表單數(shù)據(jù),第二個(gè)提交按鈕以 "multipart/form-data" 編碼格式發(fā)送表單數(shù)據(jù):

<form action="demo-post_enctype.php" method="post">
 First name: <input type="text" name="fname"><br>
 <input type="submit" value="Submit">
 <input type="submit" formenctype="multipart/form-data"
  value="Submit as Multipart/form-data">
</form>

嘗試一下 ?



<input> formmethod 屬性

formmethod 屬性定義了表單提交的方式。

formmethod 屬性覆蓋了 <form> 元素的的method 屬性。

注意: 該屬性可以與 type="submit" 和 type="image" 配合使用。

Opera Safari Chrome Firefox Internet Explorer

實(shí)例

重新定義表單提交方式實(shí)例:

<form action="demo-form.php" method="get">
 First name: <input type="text" name="fname"><br>
 Last name: <input type="text" name="lname"><br>
 <input type="submit" value="Submit">
 <input type="submit" formmethod="post" formaction="demo-post.php"
  value="Submit using POST">
</form>

嘗試一下 ?



<input> formnovalidate 屬性

novalidate 屬性是一個(gè) boolean 屬性.

novalidate屬性描述了 <input> 元素在表單提交時(shí)無(wú)需被驗(yàn)證。

formnovalidate 屬性會(huì)覆蓋 <form> 元素的novalidate屬性.

注意: formnovalidate 屬性與type="submit"一起使用

Opera Safari Chrome Firefox Internet Explorer

實(shí)例

兩個(gè)提交按鈕的表單(使用與不適用驗(yàn)證 ):

<form action="demo-form.php">
 E-mail: <input type="email" name="userid"><br>
 <input type="submit" value="Submit"><br>
 <input type="submit" formnovalidate value="Submit without validation">
</form>  

嘗試一下 ?



<input> formtarget 屬性

formtarget 屬性指定一個(gè)名稱(chēng)或一個(gè)關(guān)鍵字來(lái)指明表單提交數(shù)據(jù)接收后的展示。

The formtarget 屬性覆蓋 <form>元素的target屬性.

注意: formtarget 屬性與type="submit" 和 type="image"配合使用.

Opera Safari Chrome Firefox Internet Explorer

實(shí)例

兩個(gè)提交按鈕的表單, 在不同窗口中顯示:

<form action="demo-form.php">
 First name: <input type="text" name="fname"><br>
 Last name: <input type="text" name="lname"><br>
 <input type="submit" value="Submit as normal">
  <input type="submit" formtarget="_blank"
  value="Submit to a new window">
</form>

嘗試一下 ?



<input> height 和 width 屬性

height 和 width 屬性規(guī)定用于 image 類(lèi)型的 <input> 標(biāo)簽的圖像高度和寬度。

注意: height 和 width 屬性只適用于 image 類(lèi)型的<input> 標(biāo)簽。

提示:圖像通常會(huì)同時(shí)指定高度和寬度屬性。如果圖像設(shè)置高度和寬度,圖像所需的空間 在加載頁(yè)時(shí)會(huì)被保留。如果沒(méi)有這些屬性, 瀏覽器不知道圖像的大小,并不能預(yù)留 適當(dāng)?shù)目臻g。圖片在加載過(guò)程中會(huì)使頁(yè)面布局效果改變 (盡管圖片已加載)。

Opera Safari Chrome Firefox Internet Explorer

實(shí)例

定義了一個(gè)圖像提交按鈕, 使用了 height 和 width 屬性:

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

嘗試一下 ?



<input> list 屬性

list 屬性規(guī)定輸入域的 datalist。datalist 是輸入域的選項(xiàng)列表。

Opera Safari Chrome Firefox Internet Explorer

實(shí)例

在 <datalist>中預(yù)定義 <input> 值:

<input list="browsers">

<datalist id="browsers">
  <option value="Internet Explorer">
  <option value="Firefox">
  <option value="Chrome">
  <option value="Opera">
  <option value="Safari">
</datalist>

嘗試一下 ?



<input> min 和 max 屬性

min、max 和 step 屬性用于為包含數(shù)字或日期的 input 類(lèi)型規(guī)定限定(約束)。

注意: min、max 和 step 屬性適用于以下類(lèi)型的 <input> 標(biāo)簽:date pickers、number 以及 range。

Opera Safari Chrome Firefox Internet Explorer

實(shí)例

<input> 元素最小值與最大值設(shè)置:

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">

嘗試一下 ?



<input> multiple 屬性

multiple 屬性是一個(gè) boolean 屬性.

multiple 屬性規(guī)定<input> 元素中可選擇多個(gè)值。

注意: multiple 屬性適用于以下類(lèi)型的<input> 標(biāo)簽:email 和 file。: email, and file.

Opera Safari Chrome Firefox Internet Explorer

實(shí)例

上傳多個(gè)文件:

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

嘗試一下 ?



<input> pattern 屬性

pattern 屬性描述了一個(gè)正則表達(dá)式用于驗(yàn)證<input> 元素的值。

注意:pattern 屬性適用于以下類(lèi)型的<input> 標(biāo)簽: text, search, url, tel, email, 和 password.

提示: 是用來(lái)全局 title 屬性描述了模式.

提示: 您可以在我們的 JavaScript 教程中學(xué)習(xí)到有關(guān)正則表達(dá)式的內(nèi)容

Opera Safari Chrome Firefox Internet Explorer

實(shí)例

下面的例子顯示了一個(gè)只能包含三個(gè)字母的文本域(不含數(shù)字及特殊字符):

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

嘗試一下 ?



<input> placeholder 屬性

placeholder 屬性提供一種提示(hint),描述輸入域所期待的值。

簡(jiǎn)短的提示在用戶(hù)輸入值前會(huì)顯示在輸入域上。

注意: placeholder 屬性適用于以下類(lèi)型的<input> 標(biāo)簽:text, search, url, telephone, email 以及 password。

Opera Safari Chrome Firefox Internet Explorer

實(shí)例

input 字段提示文本t:

<input type="text" name="fname" placeholder="First name">

嘗試一下 ?



<input> required 屬性

required 屬性是一個(gè) boolean 屬性.

required 屬性規(guī)定必須在提交之前填寫(xiě)輸入域(不能為空)。

注意:required 屬性適用于以下類(lèi)型的<input> 標(biāo)簽:text, search, url, telephone, email, password, date pickers, number, checkbox, radio 以及 file。

Opera Safari Chrome Firefox Internet Explorer

實(shí)例

不能為空的input字段:

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

嘗試一下 ?



<input> step 屬性

step 屬性為輸入域規(guī)定合法的數(shù)字間隔。

如果 step="3",則合法的數(shù)是 -3,0,3,6 等

提示: step 屬性可以與 max 和 min 屬性創(chuàng)建一個(gè)區(qū)域值.

注意: step 屬性與以下type類(lèi)型一起使用: number, range, date, datetime, datetime-local, month, time 和 week.

Opera Safari Chrome Firefox Internet Explorer

實(shí)例

規(guī)定input step步長(zhǎng)為3:

<input type="number" name="points" step="3">

嘗試一下 ?



HTML5 <input> 標(biāo)簽

標(biāo)簽 描述
<form> 定義一個(gè)form表單
<input> 定義一個(gè) input 域

提示:你可以通過(guò)本站的編程實(shí)戰(zhàn)部分來(lái)練習(xí)如何添加HTML表單!

以上內(nèi)容是否對(duì)您有幫助:
在線筆記
App下載
App下載

掃描二維碼

下載編程獅App

公眾號(hào)
微信公眾號(hào)

編程獅公眾號(hào)