3 回答
TA贡献1982条经验 获得超2个赞
在表单的操作参数中设置正确的文件。
在 if 条件中,写e.currentTarget.submit();
if(name === true & subject_name === true){ e.currentTarget.submit(); }
TA贡献1809条经验 获得超8个赞
当您需要 POST 时,您的位置更改会执行 GET
改成
$('#login').submit(function(e){
e.preventDefault();
let name = validate_name('rollno','rerror');
let subject_name = validate_select('subject_dropdown','serror');
if(name === true & subject_name === true){
$.post('controller/indexPage_logic.php', {name:rollno}, function(response) { console.log(response)}); // do what you need to do when valid on the server too
}
})
TA贡献1765条经验 获得超5个赞
您必须将您的数据发送到服务器,问题是 window.location 没有向服务器发送任何请求以便能够协助使用
$.post('url to the server', { data1 : "Your data", data2 : yourvar }, function(res) {
console.log(res)
});
- 3 回答
- 0 关注
- 126 浏览
添加回答
举报