IE 9可以处理按钮标签的表单属性吗?

时间:2013-06-26 17:18:43

标签: html5 internet-explorer

Internet Explorer 9是否支持按钮标记的“表单”属性?特别是,单击以下示例中的按钮会在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>

1 个答案:

答案 0 :(得分:3)

It is not supported in IE

不幸的是,对按钮元素的支持从未成为浏览器制造商的首选。

修改:这个问题:<button> vs. <input type="button" />. Which to use?可能是相关的,并且接受的答案都有一个指向页面的链接,告诉人们为什么要避开按钮标记。