IE6 struts2执行错误动作
我在使用 IE6 执行 struts2 应用程序时遇到了一个奇怪的问题。
我的表单中有一个“提交”和“取消”按钮:
。 。 。
< s:提交类型=“按钮”值=“返回”标签=“返回”操作=“init”/>
....
当我单击“下一步”时,请求将转发到“init”。但这仅在使用 IE6 mozilla ie8 等正常工作时才会发生。
有什么想法吗?
谢谢, 迈克尔
i'm facting a weired problem when executing my struts2 app using IE6.
I've got a 'submit' and 'cancel' button in my form:
<s:form namespace="/myns" action="submituser" >
. . .
< s:submit type="button" value="back" label="Back" action="init"/>
<s:submit type="button" value="next" label="Next" action="submituser"/>
....
When i click on "Next" the request gets forwarded to 'init'. But this only happens when using IE6 mozilla ie8 etc work fine.
any ideas?
thanks,
Michael
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我认为是“type=”button”导致了这个问题。
有关 IE 6 的解释,请参阅此处:http://www.vancelucas.com/blog/ie6-and-multiple-button-submit-elements/
I think it is 'type="button' which is causing the issue.
See here for an explanation as to what IE 6 is up to: http://www.vancelucas.com/blog/ie6-and-multiple-button-submit-elements/