加入收藏 | 设为首页 | 会员中心 | 我要投稿 李大同 (https://www.lidatong.com.cn/)- 科技、建站、经验、云计算、5G、大数据,站长网!
当前位置: 首页 > 百科 > 正文

ajax 读取json数据

发布时间:2020-12-16 00:31:37 所属栏目:百科 来源:网络整理
导读:首先建立json.txt文件 { "programmers" : [ { "firstName" : "Brett" , "lastName" : "McLaughlin" , "email" : "brett@newInstance.com" }, { "firstName" : "Jason" , "lastName" : "Hunter" , "email" : "jason@servlets.com" }, { "firstName" : "Elliot
  • 首先建立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" onclick="startRequest();" />
  • </div>
  • </body>
  • </html>
  • (编辑:李大同)

    【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容!

      推荐文章
        热点阅读