欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

html form onsubmit函数解释,input、submit、button的区别

程序员文章站 2022-07-05 11:10:11
...

我的新项目ecgoo add_supply.html onsubmit="return check_add_supply(参数)"

 

 

 

以下内容来自链接:http://blog.1xi.net/html/submit-button-qubie

html中的input、submit和button的区别

Filed under: HTML — fangds @ 15:33

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

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

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

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

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

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

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

比如:

1,onclick=”form1.action=’a.jsp’;form1.submit();”     这样就实现了submit的功能了。

2,<form    name=”form1″    method=”post”    action=”http://blog.1xi.net”>
<input    type=”button”    name=”Button”    value=”Button”    onClick=”submit()”>
</form>

3,<input    type=”button”    name=”Button”    value=”Button”    onClick=”javascript:windows.location.href=”你的url”">

相关标签: HTML