问答详情
源自:1-4 使用get()方法以GET方式从服务器获取数据

不出现是有错误?

为何加载不出现呢?我错了哪里?


        

        <script type="text/javascript">

            $(function () {

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

                    var $this = $(this);

                    $.get("http://www.imooc.com/data/info_f.php",function($data){

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

                        $("ul").append("<li>我的名字叫:" + data.name + "</li>");

                        $("ul").append("<li>男朋友对我说:" + data.say + "</li>");

                    }, "json");

                })

            });

        </script>


提问者:*-歲頨-* 2017-01-04 15:38

个回答

  • 七戒0
    2017-01-13 09:00:25

    function($data),这里的data不用加$

  • 哈士奇二二
    2017-01-04 23:37:33

    楼上正解,看楼上~~

  • 慕粉3804975
    2017-01-04 16:10:35

    ,function($data),这里的data不用加$吧