我正在尝试使用struts 2.2.3中的ajax实现表单提交。 我将dojo插件库导入到ma项目中,这就是我的jsp的样子。
<%@ taglib prefix="s" uri="/struts-tags"%>
<%@ taglib prefix="sx" uri="/struts-dojo-tags"%>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<sx:head/>
</head>
<body>
<div class="container" id="container">
<jsp:include page="menu.jsp" />
<s:actionerror/>
<s:form action="Login" method="post">
<s:textfield name="username" label="User Name"/>
<s:password name="password" label="Password"/>
<s:submit type="submit" align="right" />
</s:form>
</div>
</body>
</html>
我知道这里没有使用“sx”。现在,jsp可以正常刷新页面。我希望使用ajax发送数据(不刷新页面)。我应该修改什么才能实现这一目标?如果任何人都可以为我提供一个示例或教程的链接,这将显示带有ajax FORM SUBMIT的struts2,这将非常有用。
答案 0 :(得分:1)
使用sx:submit而不是s:submit
<s:form action="Login" method="post" id="form1">
<s:textfield name="username" label="User Name"/>
<s:password name="password" label="Password"/>
<sx:submit align="right" targets="form1" />
</s:form>