當(dāng)前位置:軟件學(xué)堂 > 資訊首頁 > 網(wǎng)絡(luò)編程 > DIV+CSS > 表單中的圖像域image

表單中的圖像域image

2012/11/21 19:16:40作者:佚名來源:網(wǎng)絡(luò)

移動(dòng)端

【實(shí)例介紹】

表單中的圖像域image

圖像域是指用在提交按鈕位置的圖像,使得這幅圖像具有按鈕的功能。一般來說,使用默認(rèn)的按鈕形式往往會(huì)讓人覺得單調(diào),若網(wǎng)頁使用了較為豐富的色彩,或者稍微復(fù)雜的設(shè)計(jì),再使用表單默認(rèn)的按鈕形式可能會(huì)破壞整體的美感。這時(shí),可以使用圖像域,創(chuàng)建和網(wǎng)頁整體效果一致的圖像提交按鈕。

【基本語法】

<input  name="圖像域的名稱"  type="image"  src="圖像域的地址"/>

【語法介紹】

在語法中,圖像的路徑可以是絕對路徑也可以是相對路徑。

【實(shí)例代碼】

<html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <title>圖像域</title> </head> <body> <table width="100%" cellspacing="0" cellpadding="0">   <tr>     <td><form action="mailto:weixiaofoxw.com" name="form1" method="post" enctype="application/x-www-form-urlencoded"target="_blank" >       <p>       會(huì)員登錄</p>       <p>賬號(hào):                  <input name="textfield" type="text" size="25" maxlength="15" />       </p>       <p>密碼:             <input name="textfield2" type="password" value="abcdef" size="25" maxlength="6" />       </p>       <p>                       <input type="image" name="imageField" id="imageField" src="images/enter.jpg" />       </p> </form></td>   </tr> </table> </body> </html>

【代碼分析】

在代碼中,加粗部分<input type="image"name="imageField"id="imageField"src="images/enter.jpg"/>標(biāo)記將圖像域的名稱設(shè)置為imageField,地址設(shè)置為images/enter.jpg,在瀏覽器中瀏覽效果,如圖所示。

圖像域image運(yùn)行效果

 【素材及源碼下載】

請點(diǎn)擊:圖像域image 下載本實(shí)例相關(guān)素材及源碼

 

標(biāo)簽: 表單  圖像域