1.JSP文件我是这样写的.
$.ajax({
type:'post',
url:'${pageContext.request.contextPath}/jsp/squsergl/checkUserAccount.action',//调用的action
data:{'userAccount':userAccount,'date':d},//请求的参数
success:function(msg){
if(msg==1)
{
$("#span1").html("<font color='red'>此用户帐号已被占用</font>");
}
if(msg==0)
{
$("#span1").html("<font color='blue'>此用户帐号可以使用</font>");
}
}
});
2.struts配置文件很简单
<action name="checkUserAccount" class="squserglAction" method="checkUserAccount"></action>
3.struts的action代码
public void checkUserAccount() throws IOException
{
HttpServletRequest request = ServletActionContext.getRequest();
HttpServletResponse res=ServletActionContext.getResponse();
String userAccount=request.getParameter("userAccount");
System.out.println(userAccount);
List list=squserglService.findCheckUserAccount(userAccount);//查询一下数据库,有没有该用户
if(list.size()>0)
{
res.getWriter().print(1);
}
else
{
res.getWriter().print(0);
}
}
OK.一个简单的AJAX调用就完成啦!
作者: lirong1978
声明: 本文系JavaEye网站发布的原创文章,未经作者书面许可,严禁任何网站转载本文,否则必将追究法律责任!
已有 0 人发表回复,猛击->>这里<<-参与讨论
JavaEye推荐
"
没有评论:
发表评论