首页 > 开发 > CSS > 正文

html bottom html submit按钮表单控件与CSS美化

2020-03-24 17:44:51
字体:
来源:转载
供稿:网友

html bottom按钮html submit按钮控件html表单按钮控件-html bottom与html submit按钮表单控件与CSS美化,介绍form input bottom按钮和html input submit按钮基本结构与用法,html按钮控件bottom和submit区别,同时DIVCSS5对html按钮美化布局。

一般提交按钮使用了html submit和html bottom两种按钮控件实现同时可将按钮设置CSS样式美化为时间设计图片按钮,首先DIVCSS5介绍html按钮基本语法结构与用法,DIVCSS5再对按钮进行图片美化布局。

一、html submit与bottom按钮基本语法结构 - TOP

1、html submit按钮
在input标签里设置type="submit"即可设置此表单控件为按钮。

submit按钮代码:

  1. <inputname=""type="submit"value="提交"/

submit按钮效果截图

submit按钮效果截图
html submit按钮效果截图

2、html bottom按钮
在input标签里设置type="bottom"也是即可设置此表单控件为按钮。

bottom按钮代码:

  1. <inputname=""type="button"value="提交"/

bottom按钮截图:

html botton按钮效果截图
html botton按钮效果截图

二、html submit与bottom按钮区别 - TOP

type=button 就单纯是按钮功能
type=submit 是发送表单

但是对于从事WEB UI的人应该要注意到,使用submit来提高页面易用性:
使用submit后,页面支持键盘enter键操作,而很多WEB软件设计师,可能没有注意到submit统一.

用button后往往页面不支持enter键了。所以需要支持enter键,必须要设置个submit,默认enter键对页面第一个submit进行操作。

  1. <inputtype="submit"name="b1"value="提交"onClick="bt_submit_onclick()"

执行完onClick,转到action。可以自动提交不需要onClick。所以说onclick这里可以不要。

  1. <inputtype="button"name="b1"value="提交"onClick="bt_submit_onclick()"

执行完onClick,跳转文件在 js文件里控制。提交需要onClick。

比如:
1,onclick="form1.action='a.jsp';form1.submit();" 这样就实现了submit的功能了。

2,button代码

  1. <formname="form1"method="post"action="http://www.divcss5.com"
  2. <inputtype="button"name="Button"value="按钮"onClick="submit()"
  3. </form

按钮截图
按钮截图

3,按钮HTML 代码

  1. <inputtype="button"name="Button"value="Button"
    onClick="javascript:windows.location.href="你的url""

三、html submit与bottom按钮美化css div布局 - TOP

首先我们准备好按钮美化的按钮图片,并对input submit或bottom按钮控件内添加class样式即可,设置其按钮背景为美化图片,设置好边框为零,宽度和高度。

1、对html bottom按钮美化
1)、图片素材
可将图片另存为使用

按钮图片素材 鼠标另存为使用
美化图片按钮素材

2)、对应完整HTML源代码:

  1. <!DOCTYPEhtml
  2. <html
  3. <head
  4. <titlebutton按钮美化在线演示-www.divcss5.com</title
  5. <!--www.divcss5.com--
  6. <style
  7. html{width:100%;height:100%;}
  8. body{background:#fff;font-size:18px;font-family:"Arial","Tahoma","微软雅黑","雅黑";
    line-height:18px;padding:0px;margin:0px;text-align:center}
  9. div{padding:18px}
  10. img{border:0px;vertical-align:middle;padding:0;margin:0}
  11. input,button{font-family:"Arial","Tahoma","微软雅黑","雅黑";border:0;
    vertical-align:middle;margin:8px;line-height:18px;font-size:18px}
  12. .btn{width:140px;height:36px;line-height:18px;font-size:18px;
    background:url("bg26.jpg")no-repeatlefttop;color:#FFF;padding-bottom:4px}
  13. </style
  14. </head
  15. <body
  16. <p
  17. <formid="form1"name="form1"method=""action="http://www.divcss5.com/"target="_blank"
  18. <div
  19. <inputtype="button"class="btn"value="按钮"onmouseover="this.style.backgroundPosition='left-36px'"
    onmouseout="this.style.backgroundPosition='lefttop'"/
  20. </div
  21. </form
  22. </p
  23. </body
  24. </html

3)、bottom效果截图

bottom美化效果截图
bottom美化效果截图

4)、在线演示:查看案例

5)打包下载(包括html文件+图片素材)

立即下载 (6KB)

2、对html submit按钮美化
1)、图片素材
可将图片另存为使用

按钮图片素材
按钮图片素材 鼠标右键另存为使用

2)、对应完整HTML源代码:

  1. <!DOCTYPEhtml
  2. <html
  3. <head
  4. <titlesubmit按钮美化在线演示-www.divcss5.com</title
  5. <!--www.divcss5.com--
  6. <style
  7. html{width:100%;height:100%;}
  8. body{background:#fff;font-size:18px;font-family:"Arial","Tahoma","微软雅黑","雅黑";
    line-height:18px;padding:0;margin:0;text-align:center;}
  9. div{padding:18px}
  10. img{border:0px;vertical-align:middle;padding:0px;margin:0px;}
  11. input,button{font-family:"Arial","Tahoma","微软雅黑","雅黑";border:0;
    vertical-align:middle;margin:8px;line-height:18px;font-size:18px}
  12. .btns{width:143px;height:40px;background:url("bg11.jpg")no-repeatlefttop;color:#FFF;}
  13. </style
  14. </head
  15. <body
  16. <p
  17. <formid="form1"name="form1"method=""action="http://www.divcss5.com/"target="_blank"
  18. <div
  19. <inputtype="submit"class="btns"onmouseover="this.style.backgroundPosition='left-40px'"
    onmouseout="this.style.backgroundPosition='lefttop'"value="提交"/
  20. </div
  21. </form
  22. </p
  23. </body
  24. </html

3)、submit按钮效果截图

html submit美化后效果截图
html submit美化后效果截图

4)、在线演示:查看案例

5)、打包下载(包括图片素材+DIV+CSS文件):

立即下载 (5KB)

相关CSS推荐
1、div css按钮
2、html单选按钮

郑重声明:本文版权归原作者所有,转载文章仅为传播更多信息之目的,如作者信息标记有误,请第一时间联系我们修改或删除,多谢。

发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表