微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

$.ajax.html

<!DOCTYPE html>
<html>
    <head>
        <Meta charset="UTF-8">
        <link rel="shortcut icon" type="image/x-icon" href="img/timg.ico" />
        <title>查询天气</title>
        <script src="js/jquery-1.11.0.js" type="text/javascript" charset="utf-8"></script>
    </head>
    <body>
        <input type="text" name="uesrname" id="uesrname" value="" />
        <button>查询天气</button>
        <h1></h1>
        <!--key=ba257a360de141ce8d0f1a4a1bf2e3b-->
        <script type="text/javascript">
            $(button).click(function(){
                var city=$(#uesrname).val()
//                $.get(‘https://free-api.heweather.com/s6/weather/Now?location=‘+city+"&key=091902a7ef8a4327b7d3f677af3c123f",function(res){
//                    console.log(res)
//                    $(‘h1‘).html(res.HeWeather6[0].Now.tmp)
//                })
//$.ajax({
//    type:"get",
//    url:‘https://free-api.heweather.com/s6/weather/Now?location=‘+city+‘&key=091902a7ef8a4327b7d3f677af3c123f‘,
//    async:true,
//    complete:function(res){
//        console.log(res.responseJSON)
//    }
//    });
//})
            
            
            $.ajax({
                type:"get",url:"https://free-api.heweather.com/s6/weather/Now?location="+city+"&key=091902a7ef8a4327b7d3f677af3c123f",async:true,complete:function(res){
                    console.log(res)
                }
            });
            })
        </script>
    </body>
</html>

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 [email protected] 举报,一经查实,本站将立刻删除。

相关推荐