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

为什么点击保存没有反应,alert里面的内容都没弹出来

<!DOCTYPE html>

<html>

    <head>

        <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />

        <script src="https://libs.baidu.com/jquery/1.9.0/jquery.js" type="text/javascript"></script>

        <title>挑战题</title>

    </head>

    <body>

        <input id="username" type="text" name="" />

        <input id="age" type="text" name="" />

        <input id="save" type="button" value="保存"/>

        <input id="show" type="button" value="显示"/>

        <ul></ul>

        <script type="text/javascript">

            $(function(){

                var json=[];

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

                    alert("保存");

                    json.push({

                        

                        "username":$("#username").val(),

                        "age":$("#age").val()

                    });

                    $("#username").val("");

                    $("#age").val("");

                });

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

                    $.each(json,function(i){

                        $("ul").append("<li>"+json[i].username+json[i].age"</li><br>")

                    })

                });

            })

        </script>

    </body>

</html>


正在回答

1 回答

<!DOCTYPE html>


<html>


    <head>


        <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />


        <script src="https://libs.baidu.com/jquery/1.9.0/jquery.js" type="text/javascript"></script>


        <title>挑战题</title>


    </head>


    <body>


        <input id="username" type="text" name="" />


        <input id="age" type="text" name="" />


        <input id="save" type="button" value="保存"/>


        <input id="show" type="button" value="显示"/>


        <ul></ul>


        <script type="text/javascript">


            $(function(){


                var json=[];


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


                    alert("保存");


                    json.push({


                        


                        "username":$("#username").val(),


                        "age":$("#age").val()


                    });


                    $("#username").val("");


                    $("#age").val("");


                });


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


                    $.each(json,function(i){


                        $("ul").append("<li>"+json[i].username+json[i].age+"</li><br>");


                    })


                });


            })


        </script>


    </body>


</html>

 $("ul").append("<li>"+json[i].username+json[i].age+"</li><br>");少了一个分号,一个加号


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

举报

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

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

进入课程

为什么点击保存没有反应,alert里面的内容都没弹出来

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