目录
1.input标签未放在form标签里面
解决办法:
2.input标签里的"type"属性未设置,默认为"submit"
原因:
解决办法:
3.引入js文件顺序错误
原因:
解决办法
4.ajax下的根路径错误
解决办法:
5.window.location.href方法结构写错
解决办法:
附上笔者代码:
html:
js:
把标签放入
标签结束的前一行。
还没有账号?注册
找到url的根路径正确设置。
$.ajax({
url:"/users/login",
})
if (json.state === 200){
alert("登录成功!即将跳转到主页...");
window.location.href = "index.html";
}else
alert("登录失败!" + json.message);
登录
用户登录
还没有账号?注册