天气接口

<center>
    <input type="text" id="city"/>
    <input type="button" value="查询" id="sub"/>
    <div id="box" style="display: none">
        <table border="1">
            <th>日期</th>
            <th>星期</th>
            <th>城市</th>
            <th>图片</th>
            <th>温度</th>
            <th>天气</th>
            <th>风向</th>
            <th>风力</th>
            <tbody id="tianqi"></tbody>
        </table>
    </div>
</center>


$(function(){
    $("#sub").click(function(){
        var city=$("#city").val();
        $.ajax({
            url:"http://api.k780.com:88/?app=weather.future&weaid="+city+"&&appkey=10003&sign=b59bc3ef6191eb9f747dd4e83c99f2a4&format=json&jsoncallback=data",
            type:'GET',
            dataType:'jsonp',
            jsonp:'callback',
            jsonpCallback:'data',
            success:function(result){
                var re=result.result;
                var str="";
                for(i in re){
                    str+="<tr>";
                    str+="<td>"+result.result[i].days+"</td>";
                    str+="<td>"+result.result[i].week+"</td>";
                    str+="<td>"+result.result[i].citynm+"</td>";
                    str+="<td><img src="+result.result[i].weather_icon+"></td>";
                    str+="<td>"+result.result[i].temperature+"</td>";
                    str+="<td>"+result.result[i].weather+"</td>";
                    str+="<td>"+result.result[i].wind+"</td>";
                    str+="<td>"+result.result[i].winp+"</td>";
                    str+="</tr>";
                }
                $("#box").show();
                $("#tianqi").html(str);

            }
        })
    })
})

  • 0
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值