如题,
form 的 action 为空 不是就是post到本页面了吗,要咋写呢 求教了
我的功能很简单,页面上一个用户名 一个密码 一个submit按钮
$.ajax({
//类型
type: 'post',
url: '/api/user/login', //后台接受的地方
//提交的数据
data: {
username: $loginBox.find('[name="username"]').val(),
password: $loginBox.find('[name="password"]').val()
},
dataType: 'json',
success: function(result) {
$loginBox.find('.colWarning').html(result.message);
if (!result.code) {
window.location.reload();
}
}
});
提交后刷新----window.location.reload();
}
提交后跳转页面 --window.location.href(url);
}