3 回答

TA貢獻(xiàn)1982條經(jīng)驗(yàn) 獲得超2個(gè)贊
在表單的操作參數(shù)中設(shè)置正確的文件。
在 if 條件中,寫e.currentTarget.submit();
if(name === true & subject_name === true){ e.currentTarget.submit(); }

TA貢獻(xiàn)1809條經(jīng)驗(yàn) 獲得超8個(gè)贊
當(dāng)您需要 POST 時(shí),您的位置更改會(huì)執(zhí)行 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貢獻(xiàn)1765條經(jīng)驗(yàn) 獲得超5個(gè)贊
您必須將您的數(shù)據(jù)發(fā)送到服務(wù)器,問(wèn)題是 window.location 沒有向服務(wù)器發(fā)送任何請(qǐng)求以便能夠協(xié)助使用
$.post('url to the server', { data1 : "Your data", data2 : yourvar }, function(res) {
console.log(res)
});
- 3 回答
- 0 關(guān)注
- 166 瀏覽
添加回答
舉報(bào)