天气预报信息

不同地区需要显示该地区对应的天气信息

获得访问用户的ip地址信息,通过ip地址获得其对应的城市信息

城市信息获得出来还要获得城市的编码信息

ip------->城市-------》编码

www.tianqi.com网站已经把 ip/城市/编码 的关系都给处理好了,可以直接调用获得城市对应的天气信息。

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>Title</title>
    <script type="text/javascript">
        //利用ajax调用天气信息
        window.onload = function () {
            var xhr = new XMLHttpRequest();
            xhr.onreadystatechange = function () {
                if(xhr.readyState == 4){
                    eval("var info=" + xhr.responseText);
                    var s = "";
                    s += "地址:" + info.weatherinfo.city + "<br/>";
                    s += "温度:" + info.weatherinfo.temp + "<br/>";
                    s += "风向:" + info.weatherinfo.WD + "<br/>";
                    document.getElementById('result').innerHTML = s;
                }
            }
            xhr.open('get', './weather.php');
            xhr.send(null);
        }
    </script>
    <style type="text/css">

    </style>
</head>
<body>
    <h2>网站首页面(或得天气信息)</h2>
    <div id="result"></div>
    <iframe width="420" scrolling="no" height="60" frameborder="0" allowtransparency="true" src="http://i.tianqi.com/index.php?c=code&id=12&color=%2300B0F0&icon=1&num=1&site=13"></iframe>
</body>
</html>

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值