实际上是一个很简单的问题,网上能查找到的资源和手头上的资源,都说的含含糊糊的.
在这里我来更简洁的说明一下:
$.getJSON()方法是 jquery1.2之后的一个方法.可以调用本域和其他域的方法,可以用来进行跨域交互.也就是说可以从一个网站调用另一个网站的数据.
1.对于本域的调用
本域的任何一个文本格式的文件(.txt,.json,.js,.html,...)都可以使用$getJSON调用,前提是这个文件里面的内容必须是json格式的.
这里简单说下json格式:{"key":"value"}
.txt 文件中可以这么写{"name":"joe","company":"moozone"}
.json文件中这么写 [{"name":"joe","company":"moozone"}]
.js文件中这么写 ({"name":"joe","company":"moozone"})
.html等文本文件和.txt文件相同对待...
sample:
test.json:
[{"name":"joe","company":"moozone"}]
joe.hml:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<Meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>本域调用</title>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.3.1/jquery.js" type="text/javascript"></script>
<script type="text/javascript">
//<![CDATA[
$(function(){
$.getJSON('test.json',function(data){
alert(data[0].name);
});
})
//]]>
</script>
</head>
<body>
</body>
</html>
---------------------------分割线---------为分割而分割----------------------------------------------------------------------------------------------
2.跨域的调用(这里使用asp页面为例[该例子本域跨域皆可使用])
在写例子之前,我们需要准备,服务器端asp页面的返回数据需要转成json格式,所以需要一个工具类,我们可以从这里下载code.google.com/p/aspjson/downloads/list.
sample:
hr.asp
<%@LANGUAGE="VBSCRIPT" CODEPAGE="65001"%>
<!--#include file="JSON_2.0.2.asp"-->
<%
Dim member
Set member = jsObject()
member("name") = "joe"
member("company") = "moozone"
'这里的返回的格式为一个方法(方法名字为jquery自动命名),方法体为json格式的数据
'即functionName(json)
response.write request("jsoncallback")&"("&member.jsString&")"
%>
joe.html:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<Meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>跨域调用</title>
<script src="js/jquery142.js" type="text/javascript"></script>
<script type="text/javascript">
//![CDATA[
$(function(){
//注意这里的jsoncallback=?和服务器端的对应
$.getJSON('http://www.hongruisoft.com/hr.asp?jsoncallback=?',function(data){
alert(data.name);
});
})
//]]>
</script>
</head>
<body>
</body>
</html>
很简单不是么.
原文链接:https://www.f2er.com/json/290738.html