JSON 教程
JSON.parse()
查看服务端数据: json-demo-array
源代码:
点击运行 »
<h2>内容是数组</h2> <p>内容是数组会转换为 JavaScript 数组。</p> <p id="demo"></p> <script> var xmlhttp = new XMLHttpRequest(); xmlhttp.onreadystatechange = function() { if (this.readyState == 4 & this.status == 200) { myArr = JSON.parse(this.responseText); document.getElementById("demo").innerHTML = myArr[1]; } }; xmlhttp.open("GET", "/examples/json-demo-array/full.json", true); xmlhttp.send(); </script> <p>查看服务端数据 <a href="/examples/json-demo-array/full.json" target="_blank">json-demo-array</a></p>
运行结果:
点击运行 »