抱歉,如果这个问题没有意义,我仍在尝试理解 ajax、JavaScript 和 jQuery。所以这是我的问题。
这是我的 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。我搜索了网络,但没有得到我的答案。提前致谢。任何帮助高度赞赏。