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

什么知道请求获取的文件类型是json

<div id="divtest">

            <div class="title">

                <span class="fl">我的个人资料</span> 

                <span class="fr">

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

                </span>

            </div>

            <ul></ul>

        </div>

        

        <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-10-07 17:52

个回答

  • 慕田峪5302042
    2017-10-07 18:34:35
    已采纳

     $.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");

    这里看得出来是get  json