在我的网页中:这是一个jsp文件 我有一个输入文本,我在其中输入一个文本然后我按下输入错误发生:
javax.servlet.ServletException: Request[/myAction] does not contain handler parameter named 'method'. This may be caused by whitespace in the label
text.
可能是什么原因?
答案 0 :(得分:2)
如果您在其中一个文本输入中按Enter键,则浏览器将像表单上的第一个按钮一样按下& IE不会向服务器发送任何与按钮相关的信息。
为了避免这一切并让一个输入像多个输入一样,只需添加一个隐藏的'文字输入
<input type="text" style="display: none" />
此输入将强制IE在此表单上按下Enter键时单击页面上的第一个按钮。
有关详细信息,请转到Click here