對不起,如果這個問題沒有意義,我仍然試圖理解ajax,JavaScript和jQuery。所以這是我的問題。從javascript調用ajax函數
這是我的javascript代碼:
if (colorToCheck == gup("Player1")) {
document.getElementById('win').innerHTML=player1+" wins";
//add ajax call to update my json file
redScore += 1
} else if (colorToCheck == gup("Player2")) {
document.getElementById('win').innerHTML=player2+" wins";
//add ajax call to update my json file
blackScore += 1
}
所以我想從這個塊調用AJAX。我搜查了網絡,但沒有得到我的答案。提前致謝。任何幫助高度讚賞。
看看jQuery.ajax – neo 2013-04-24 18:29:07
使用$ .ajax()會遇到什麼麻煩? – Ohgodwhy 2013-04-24 18:29:23
你搜索了網絡,沒有得到答案?整個世界都在使用ajax和jquery。到處都有教程和例子。 – Timmerz 2013-04-24 18:30:18