81,122
社区成员




$.ajax({
cache: false,
url: '${pageContext.request.contextPath}/signIn',
type: 'POST',
data:$('#login_form').serialize(),
async: false,
//dataType: 'json',
error: function(request) {
alert('发送请求失败!');
},
success: function (data) {
alert("777");
window.location.href="${pageContext.request.contextPath}/index";
}
});