关于ajax与struts2整合后的跳转

前两天整了一个表单,写在div里面结果struts2登录验证之后的result的结果显示在了这个div里面原因是AJAX是无刷新的所以用struts跳转之后AJAX会抓取result显示在本页面中解决方法就是去掉action类里面的result标签action返回null然后在$.post("http://localhost:8080/SSHOA/login",{username:username_str,password:password_str,verify:verify_str},function(data){

$("#username_message").html(data);//服务器返回的信息

});

function函数里面做一下验证根据服务器的返回信息用window.location.href做跳转

相关推荐