代码复制到本地无法运行怎么解决?

来源:1-1 使用load()方法异步请求数据

weixin_慕瓜0263649

2019-07-01 11:20

代码复制到本地无法运行怎么解决?怎样在本地使用load。

写回答 关注

2回答

  • 默过灬无痕
    2019-07-25 17:04:07

    <!DOCTYPE html >

    <html xmlns="http://www.w3.org/1999/xhtml">

        <head>

            <title>使用load()方法异步请求数据</title>

            <script src="https://www.imooc.com/static/lib/jquery/1.9.1/jquery.js" type="text/javascript"></script>

            <link href="style.css" rel="stylesheet" type="text/css" />

        </head>

        

        <body>

            <div id="divtest">

                <div class="title">

                    <span class="fl">我最爱吃的水果</span> 

                    <span class="fr">

                        <input id="btnShow" type="button" value="加载" />

                    </span>

                </div>

                <ul><h3></h3></ul>

            </div>

            

            <script type="text/javascript">

                $(function () {

                    $("#btnShow").bind("click", function () {

                        var $this = $(this);

                        $("ul")

                        .html("<img src='Images/Loading.gif' alt=''/>")

                        .load("https://www.imooc.com/data/fruit.html",function(){

                            $this.attr("disabled", "true");

                        });

                    })

                });

            </script>

        </body>

    </html>


  • BOJO
    2019-07-02 10:10:19

    把图片路径以及js路劲改好  http改成https

    weixin...

    本地路径怎样设置,你有实例吗谢谢。

    2019-07-02 17:03:28

    共 1 条回复 >

jQuery基础(五)一Ajax应用与常用插件

如何用jquery实现ajax应用,加入学习,有效提高前端开发速度

69100 学习 · 400 问题

查看课程

相似问题