六狼论坛

 找回密码
 立即注册

QQ登录

只需一步,快速开始

新浪微博账号登陆

只需一步,快速开始

搜索
查看: 34|回复: 0

ajax读取json数据

[复制链接]

升级  29.33%

24

主题

24

主题

24

主题

秀才

Rank: 2

积分
94
 楼主| 发表于 2013-1-23 02:45:30 | 显示全部楼层 |阅读模式
首先建立json.txt文件{"programmers": [{ "firstName": "Brett", "lastName":"McLaughlin", "email": "brett@newInstance.com" },{ "firstName": "Jason", "lastName":"Hunter", "email": "jason@servlets.com" },{ "firstName": "Elliotte", "lastName":"Harold", "email": "elharo@macfaq.com" }],"authors": [{ "firstName": "Isaac", "lastName": "Asimov", "genre": "science fiction" },{ "firstName": "Tad", "lastName": "Williams", "genre": "fantasy" },{ "firstName": "Frank", "lastName": "Peretti", "genre": "christian fiction" }],"musicians": [{ "firstName": "Eric", "lastName": "Clapton", "instrument": "guitar" },{ "firstName": "Sergei", "lastName": "Rachmaninoff", "instrument": "piano" }]}通过异步调用,来读取json数据<html xmlns="http://www.w3.org/1999/xhtml" ><head runat="server"><script type="text/javascript">var xmlHttp;function createXMLHttpRequest(){    if(window.ActiveXObject)    {        xmlHttp = new ActiveXObject("Microsoft.XMLHTTP");    }    else if(window.XMLHttpRequest)    {        xmlHttp = new XMLHttpRequest();    }}function startRequest(){    createXMLHttpRequest();    try    {        xmlHttp.onreadystatechange = handleStateChange;        xmlHttp.open("GET", "Json.txt", true);        xmlHttp.send(null);    }    catch(exception)    {        alert("xmlHttp Fail");    }}function handleStateChange(){       if(xmlHttp.readyState == 4)    {               if (xmlHttp.status == 200 || xmlHttp.status == 0)        {            var result = xmlHttp.responseText;            var json = eval("(" + result + ")");            alert(json.programmers[0].firstName);//读取json数据            //alert(json.sex);        }    }}</script></head><body>    <div>        <input type="button" value="AjaxTest"  />    </div></body></html>
您需要登录后才可以回帖 登录 | 立即注册 新浪微博账号登陆

本版积分规则

快速回复 返回顶部 返回列表