jQuery.getJSON() 方法



描述

jQuery.getJSON( url, [data], [callback] ) 方法使用 GET HTTP 请求从服务器加载 JSON 数据。

该方法返回 XMLHttpRequest 对象。

语法

以下是使用此方法的简单语法:

$.getJSON( url, [data], [callback] )

参数

以下是此方法使用所有参数的描述:

  • url − 包含发送请求的 URL 的字符串

  • data − 此可选参数表示将发送到服务器的键/值对。

  • callback − 此可选参数表示在数据成功加载后要执行的函数。

示例

假设我们在 result.json 文件中具有以下 JSON 内容:

{
"name": "Zara Ali",
"age" : "67",
"sex": "female"
}

以下是一个简单的示例,展示了此方法的用法:

<html>
   <head>
      <title>The jQuery Example</title>
      <script type = "text/javascript" 
         src = "https://tutorialspoint.com/jquery/jquery-3.6.0.js">
      </script>
		
      <script type = "text/javascript" language = "javascript">
         $(document).ready(function() {
			
            $("#driver").click(function(event){
               $.getJSON('result.json', function(jd) {
                  $('#stage').html('<p> Name: ' + jd.name + '</p>');
                  $('#stage').append('<p>Age : ' + jd.age+ '</p>');
                  $('#stage').append('<p> Sex: ' + jd.sex+ '</p>');
               });
            });
				
         });
      </script>
   </head>
	
   <body>
      <p>Click on the button to load result.html file:</p>
		
      <div id = "stage" style = "background-color:#cc0;">
         STAGE
      </div>
		
      <input type = "button" id = "driver" value = "Load Data" />
   </body>
</html>

这应该产生以下结果:

jquery-ajax.htm
广告