3

Internet Explorer 9 是否支持按钮标签的“form”属性?特别是,单击以下示例中的按钮会在 Firefox 和 Chrome 中提交表单,但在 IE 9 中不执行任何操作:

<form id="myform" action="/action" method="POST">
    <input type='hidden' name='foo' value='bar' />
</form>

<!-- Other content here, irrelevant for this example -->

<button form="myform">Click me</button>
4

1 回答 1

3

它在 IE 中不受支持

不幸的是,对按钮元素的支持从来都不是浏览器制造商的优先事项。

编辑:这个问题:<button> vs. <input type="button" />。使用哪个?可能是相关的,并且接受的答案具有指向页面的链接,该页面告诉人们为什么避免使用按钮标签。

于 2013-06-26T17:23:37.843 回答