1 回答

TA貢獻(xiàn)1876條經(jīng)驗(yàn) 獲得超5個(gè)贊
我已經(jīng)弄清楚了。我只是將它包含在我的循環(huán)語句的底部并添加了一個(gè) save.php 文件。將此用作參考https://www.studentstutorial.com/ajax/insert-data
$.ajax({
url: "save.php",
type: "POST",
data: {
fname: hid1,
lname: hid2,
gender: hid3,
hour: hid4
},
cache: false,
success: function(dataResult){
var dataResult = JSON.parse(dataResult);
if(dataResult.statusCode==200){
alert("Save Successful!");
}
else if(dataResult.statusCode==201){
alert("Error occured !");
}
}
});
- 1 回答
- 0 關(guān)注
- 98 瀏覽
添加回答
舉報(bào)