使用css美化html表單控件詳細(xì)示例(表單美化)
來(lái)源:易賢網(wǎng) 閱讀:1373 次 日期:2014-05-09 11:13:43
溫馨提示:易賢網(wǎng)小編為您整理了“使用css美化html表單控件詳細(xì)示例(表單美化)”,方便廣大網(wǎng)友查閱!

點(diǎn)評(píng):這篇文章主要介紹了使用css美化html表單控件詳細(xì)示例(表單美化),需要的朋友可以參考下

一、html submit與bottom按鈕基本語(yǔ)法結(jié)構(gòu)

1、html submit按鈕

在input標(biāo)簽里設(shè)置type="submit"即可設(shè)置此表單控件為按鈕。

submit按鈕代碼:

代碼如下:

<input name="" type="submit" value="提交" />

submit按鈕效果截圖

1.jpg

html submit按鈕效果截圖

2、html bottom按鈕

在input標(biāo)簽里設(shè)置type="bottom"也是即可設(shè)置此表單控件為按鈕。

bottom按鈕代碼:

代碼如下:

<input name="" type="button" value="提交" />

bottom按鈕截圖:

2.jpg

html botton按鈕效果截圖

二、html submit與bottom按鈕區(qū)別

type=button 就單純是按鈕功能

type=submit 是發(fā)送表單

但是對(duì)于從事WEB UI的人應(yīng)該要注意到,使用submit來(lái)提高頁(yè)面易用性:

使用submit后,頁(yè)面支持鍵盤(pán)enter鍵操作,而很多WEB軟件設(shè)計(jì)師,可能沒(méi)有注意到submit統(tǒng)一.

用button后往往頁(yè)面不支持enter鍵了。所以需要支持enter鍵,必須要設(shè)置個(gè)submit,默認(rèn)enter鍵對(duì)頁(yè)面第一個(gè)submit進(jìn)行操作。

代碼如下:

<input type="submit" name="b1" value="提交" onClick="bt_submit_onclick()">

執(zhí)行完onClick,轉(zhuǎn)到action??梢宰詣?dòng)提交不需要onClick。所以說(shuō)onclick這里可以不要。

復(fù)制代碼代碼如下:

<input type="button" name="b1" value="提交" onClick="bt_submit_onclick()">

執(zhí)行完onClick,跳轉(zhuǎn)文件在 js文件里控制。提交需要onClick。

比如:

1,onclick="form1.action='a.jsp';form1.submit();" 這樣就實(shí)現(xiàn)了submit的功能了。

2,button代碼

代碼如下:

<form name="form1" method="post" action="<a >

<input type="button" name="Button" value="按鈕" onClick="submit()">

</form>

按鈕截圖

3.jpg

3,按鈕HTML 代碼

代碼如下:

<input type="button" name="Button" value="Button"

onClick="javascript:windows.location.href="你的url"">

三、html submit與bottom按鈕美化css p布局

首先我們準(zhǔn)備好按鈕美化的按鈕圖片,并對(duì)input submit或bottom按鈕控件內(nèi)添加class樣式即可,設(shè)置其按鈕背景為美化圖片,設(shè)置好邊框?yàn)榱?,寬度和高度?/P>

1、對(duì)html bottom按鈕美化

1)、圖片素材

可將圖片另存為使用

4.jpg

美化圖片按鈕素材

2)、對(duì)應(yīng)完整HTML源代碼:

復(fù)制代碼代碼如下:

<!DOCTYPE html>

<html>

<head>

<title>button按鈕美化在線演示-www.css.com</title>

<style>

html{width:100%;height:100%;}

body{background:#fff;font-size:18px;font-family:"Arial","Tahoma","微軟雅黑","雅黑";

line-height:18px;padding:0px;margin:0px;text-align:center}

div{padding:18px}

img{border:0px;vertical-align:middle;padding:0;margin:0}

input,button{font-family:"Arial","Tahoma","微軟雅黑","雅黑";border:0;

vertical-align:middle;margin:8px;line-height:18px;font-size:18px}

.btn{width:140px;height:36px;line-height:18px;font-size:18px;

background:url("bg26.jpg")no-repeatlefttop;color:#FFF;padding-bottom:4px}

</style>

</head>

<body>

<p>

<formid="form1"name="form1"method=""action="<a >

<div>

<inputtype="button"class="btn"value="按鈕"onmouseover="this.style.backgroundPosition='left-36px'"

onmouseout="this.style.backgroundPosition='lefttop'"/>

</div>

</form>

</p>

</body>

</html>

3)、bottom效果截圖

5.jpg

bottom美化效果截圖

2、對(duì)html submit按鈕美化

1)、圖片素材

可將圖片另存為使用

6.jpg

按鈕圖片素材 鼠標(biāo)右鍵另存為使用

2)、對(duì)應(yīng)完整HTML源代碼:

代碼如下:

<!DOCTYPE html>

<html>

<head>

<title>submit按鈕美化 在線演示-www.css.com</title>

<!-- <a >www.css.com</a> -->

<style>

html { width:100%; height:100%; }

body { background:#fff; font-size:18px; font-family:"Arial", "Tahoma", "微軟雅黑", "雅黑";

line-height:18px; padding:0; margin:0; text-align:center; }

div { padding:18px }

img { border:0px; vertical-align:middle; padding:0px; margin:0px; }

input, button { font-family:"Arial", "Tahoma", "微軟雅黑", "雅黑"; border:0;

vertical-align:middle; margin:8px; line-height:18px; font-size:18px }

.btns { width:143px; height:40px; background:url("bg11.jpg") no-repeat left top; color:#FFF; }

</style>

</head>

<body>

<p>

<form id="form1" name="form1" method="" action="<a target="_blank">

<div>

<input type="submit" class="btns" onmouseover="this.style.backgroundPosition='left -40px'"

onmouseout="this.style.backgroundPosition='left top'" value="提交" />

</div>

</form>

</p>

</body>

</html>

3)、submit按鈕效果截圖

7.jpg

html submit美化后效果截圖

更多信息請(qǐng)查看IT技術(shù)專(zhuān)欄

更多信息請(qǐng)查看網(wǎng)頁(yè)制作
易賢網(wǎng)手機(jī)網(wǎng)站地址:使用css美化html表單控件詳細(xì)示例(表單美化)
由于各方面情況的不斷調(diào)整與變化,易賢網(wǎng)提供的所有考試信息和咨詢(xún)回復(fù)僅供參考,敬請(qǐng)考生以權(quán)威部門(mén)公布的正式信息和咨詢(xún)?yōu)闇?zhǔn)!
相關(guān)閱讀網(wǎng)頁(yè)制作

2025國(guó)考·省考課程試聽(tīng)報(bào)名

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