为了账号安全,请及时绑定邮箱和手机立即绑定

jQuery基础(五)一Ajax应用与常用插件,1-4节课,代码运行结果是undefined,请问哪里出错了?

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
    <head>
        <title>使用get()方法以GET方式从服务器获取数据</title>
        <script src="http://libs.baidu.com/jquery/1.9.0/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></ul>
        </div>
        
        <script type="text/javascript">
            $(function () {
                $("#btnShow").bind("click", function (data){
                    var $this = $(this);
                    $.get("http://www.imooc.com/data/info_f.php",function(){
                        $this.attr("disabled", "true");
                        $("ul").append("<li>我的名字叫:" + data.name + "</li>");
                        $("ul").append("<li>男朋友对我说:" + data.say + "</li>");
                    }, "json");
                });
            });
        </script>
    </body>
</html>


正在回答

3 回答

$.get("http://www.imooc.com/data/info_f.php",function(){ 这里的function少了个data

0 回复 有任何疑惑可以回复我~
#1

year1233 提问者

非常感谢!data放错位置竟然没发现
2017-11-07 回复 有任何疑惑可以回复我~

http 加s 看看

1 回复 有任何疑惑可以回复我~

我加了data咋没用呢?不显示。其他代码都一样的

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

                })

            });


0 回复 有任何疑惑可以回复我~

举报

0/150
提交
取消
jQuery基础(五)一Ajax应用与常用插件
  • 参与学习       69098    人
  • 解答问题       400    个

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

进入课程

jQuery基础(五)一Ajax应用与常用插件,1-4节课,代码运行结果是undefined,请问哪里出错了?

我要回答 关注问题
意见反馈 帮助中心 APP下载
官方微信