码迷,mamicode.com
首页 > Web开发 > 详细

json数据返回

时间:2016-05-03 17:59:33      阅读:145      评论:0      收藏:0      [点我收藏+]

标签:

<script type="text/javascript">
function xmlpage(){
    var xhr=new XMLHttpRequest();
    xhr.onreadystatechange=function(){
        if(xhr.readyState===4){
            eval("var obj="+xhr.responseText);
            var str="地址"+obj.weatherinfo.city+"温度"+obj.weatherinfo.temp+"风向"+obj.weatherinfo.WD;
            document.getElementById("tq").innerHTML=str;
            }
        }
    xhr.open("GET","/6.php");
    xhr.send(null);
    }
window.onload=function(){
    xmlpage();};
</script>
<div id="tq"></div>

 

json数据返回

标签:

原文地址:http://www.cnblogs.com/zywf/p/5455741.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!