-1

この質問が意味をなさない場合は申し訳ありませんが、私はまだ 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 を呼び出したいと思います。私はネットを検索しましたが、答えが得られませんでした。前もって感謝します。どんな助けでも大歓迎です。

4

3 に答える 3

1
 $.ajax({
  type: "POST",
  url: "home.aspx", //you can call any function you want to execute in this url
  data: datastring,
    success: function(msg){
       alert( "This is ajax call:" + msg );
           // some code to exec on success
    }
 }); 

これは ajax 呼び出しのサンプルです。特に JSON を探している場合は、このhttp://api.jquery.com/jQuery.getJSON/を参照してください。

于 2013-04-24T18:34:34.860 に答える
1

次のようなものを使用します。

$('#win').html(colorToCheck == gup("Player1") ? player1:player2 + " wins");

if (colorToCheck == gup("Player1")) 
   redScore += 1
else if (colorToCheck == gup("Player2")) 
  blackScore += 1

$.post("update-score.php", { player: x, score: y } );

...

于 2013-04-24T18:36:46.817 に答える