1

这些在 IE10 中根本不适合我,但它们在所有其他浏览器中都可以正常工作,包括 IE9。

1) 链接内的按钮

在 IE10 中,当您单击此按钮时,它实际上什么都不做:

<a href="http://www.mysite.com/whatever">
    <input type="button" class="btn" value="Edit">
</a>

2) 使用按钮提交表单

<form action="myfile.php" method="post">
    <button class="btn btn-large red" id="submit" type="submit">Generate</button>
</form>

这有非常奇怪的行为。通常你会期望它立即进入myfile.php页面并开始加载。然而在这种情况下,加载器在当前文件上旋转然后停止,好像它已经完成一样,然后在 10 秒后(或者无论表单加载多长时间)它跳转到下一页。

至关重要的是,从用户的角度来看,它看起来好像什么也没做。

有没有其他人在 IE10 中遇到过这些问题?

我尝试了各种方法,例如将 x-ua-compatible 设置为:

IE=9

IE=9,chrome=1

IE=EmulateIE9

等等......但它根本没有任何区别。

4

1 回答 1

0

尝试:

<a href="http://www.mysite.com/whatever">Edit</a><br /><br />

<form action="myfile.php" method="post">
    <input class="btn btn-large red" id="submit" type="submit" value="Generate" />
</form>
于 2013-10-23T09:43:21.007 回答