最新的Web開發教程
 

jQuery getJSON() Method

<jQuery的AJAX方法

使用AJAX請求獲取JSON數據,並輸出結果:

$("button").click(function(){
    $.getJSON("demo_ajax_json.js", function(result){
        $.each(result, function(i, field){
            $("div").append(field + " ");
        });
    });
});
試一試»

定義和用法

所述getJSON()方法被用來獲得JSON使用數據AJAX HTTP GET請求。


句法

$(selector).getJSON(url,data,success(data,status,xhr))

參數 描述
url 需要。 指定的URL發送請求
data 可選的。 指定要發送到服務器的數據
success(data,status,xhr) 可選的。 指定函數,如果請求成功運行
附加參數:
  • data -包含從服務器返回的數據。
  • status -包含一個包含字符串請求狀態( "success", "notmodified", "error", "timeout""parsererror"
  • xhr -包含XMLHttpRequest對象

<jQuery的AJAX方法