H5获取当地天气预报

来源:互联网 发布:mac安装win7驱动程序 编辑:程序博客网 时间:2024/05/16 19:27

H5获取当地天气预报

$.getScript('http://int.dpool.sina.com.cn/iplookup/iplookup.php?format=js', function(_result) {            if (remote_ip_info.ret == '1') {                $.ajax({                    type: "GET",                    url: "http://wthrcdn.etouch.cn/weather_mini?city="+remote_ip_info.city,                    data: "",                    success: function(msg){                        var res =  eval('('+msg+')');                        //alert(msg);                        if(res.status==1000){                            //请求成功                            $('#currentCity').html(res.data.city);                            $('#wendu').html(res.data.wendu);                            $('#weather').html(res.data.forecast[0].type);                        }                    }                });            }        });

0 0
原创粉丝点击