我正在使用Struts 2(2.3.32)。
使用struts的提交标签构建简单的struts,
<s:text type="text" onclick="callme()" id ="1">
<s:submit type="button" onclick="callme()" id ="2 ">
在html页面上渲染后的这些语句,第一个可以工作,但是对于提交,它会被渲染到
<input type="submit" click:onclick()="" id="2">
适用于简单的文本字段,
<input type="text" onclick="callme()" id ="1">
有人可以指出,这有什么不对吗? struts 2.3.16中添加了哪些卫生设施?
它在Struts 2.3.15.x中运行