html – 什么是默认按钮类型?

html – 什么是默认按钮类型?,第1张

概述如果我这样做: <button name="Save">Save</button> 我可以放心,它会在所有浏览器中表现相同吗? 对于大多数浏览器,默认类型按钮是提交. type = submit|button|reset [CI] This attribute declares the type of the button. Possible values: submit: Creates a 如果我这样做:
<button name="Save">Save</button>

我可以放心,它会在所有浏览器中表现相同吗?

解决方法 对于大多数浏览器,默认类型的按钮是提交.

type = submit|button|reset [CI]

This attribute declares the type of the button. Possible values:

submit: Creates a submit button. This is the default value.

(http://www.w3.org/TR/html401/interact/forms.html#h-17.5)

唯一的例外是ie7及以下默认类型为按钮的情况.

windows Internet Explorer 8 and later. The default value of this attribute depends on the current document compatibility mode. In ie8 Standards mode,the default value is submit. In other compatibility modes and earlIEr versions of windows Internet Explorer,the default value is button.

(https://msdn.microsoft.com/en-us/library/ms534696(v=vs.85).aspx)

如果旧的IE支持不是问题(IE的旧版本也有一个窗体上的多个按钮的问题,并且按钮的文本被传递而不是值),你可能会因为没有提供按钮的type属性而逃脱.

总结

以上是内存溢出为你收集整理的html – 什么是默认按钮类型?全部内容,希望文章能够帮你解决html – 什么是默认按钮类型?所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/web/1106719.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-05-28
下一篇 2022-05-28

发表评论

登录后才能评论

评论列表(0条)

保存