PHPプログラミング実戦15-14/15

1858 ワード

フロントエンド






    Loading JSON with jQuery
    
    
        $(document).ready(function () {
                $.getJSON("json_example.php", function (data) {
                    $.each(data, function (continent, animals) {
                        var message = "<strong>" + continent + "</strong></br>";
                        for (j = 0; j < animals.length; ++j) {
                            message += animals[j] + ", ";
                        }
                        // remove last comma  and space
                        message = message.trim();
                        message = message.substring(0, message.length - 1);
                        $("#generated_content").append("<p>" + message + "</p>");
                    })
                })
            }
        )
    


Ajax parsed XML:


サーバ側json_example.phpはjson文字列を返します
 array("gorilla", "giraffe", "elephant"),
    "asia" => array("panda"),
    "north america" => array("grizzly bear", "lynx", "orca"),
);
print json_encode($animals);
?>

ポイント
  • 要求リソースファイルPHPプログラミング実戦15-14
  • $.eachメソッドは、マッチング要素ごとに実行される関数を規定する.ヒント:falseを返すと、ループを早期に停止できます.構文:$(selector).each(function(index,element))
  • $.getJSONここでお願いしたのはjson_example.phpのようなphpファイルですが、返される結果はjson文字列です.phpはタグジェネレータにすぎない.getJSON $.each

  • 問題jsの異なる関数のコールバック関数のいくつかの形式はどこで定義したのですか?