最近有HTML版本改变了(从ie7到IE8?)
我注意到以下改变,使我有些麻烦 –
我有一个类似于这样的代码:
我注意到以下改变,使我有些麻烦 –
我有一个类似于这样的代码:
<form method="POST" action="/admin/modify"> <input type="text"/> <button onclick="dosomething()">Press</button> </form> <script type="text/javascript"> function doSomething(){ // doesn't matter what actually } </script>
在这段代码中我使用的是通过按下窗体中的按钮,我想要的是执行一些JavaScript操作,但是,即使我不愿意,也会导致表单被提交.
那么 – 是真的吗如果是这样,怎么可以在一个内部执行一些java脚本actoin,但是防止自动提交表单?
解决方法
根据
W3schools,提交是IE 8中按钮元素的新的默认动作:
Always specify the type attribute for the button. The default type for Internet Explorer is “button”,while in other browsers (and in the W3C specification) it is “submit”.
因此,如果您没有指定类型,表单将在所有浏览器中提交,而不是IE 7.
这应该工作:
<button type="button" onclick="dosomething()">Press</button>