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

现在1.9.0的版本是不是已经支持了?

<!DOCTYPE html>

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

    <head>

        <title>toggle()方法绑定多个函数</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>

        <h3>toggle()方法绑定多个函数</h3>

        <input id="btntest" type="button" value="点一下我" />

        <div>我是动态显示的</div>

        

        <script type="text/javascript">

            $(function () {

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

                    $("div").toggle(

                      function(){

                          $(this).attr("display", "none");

                      },

                      function(){

                          $(this).removeAttr("display");

                      })

                })

            });

        </script>

    </body>

</html>


正在回答

2 回答

<!DOCTYPE html>

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

    <head>

        <title>toggle()方法绑定多个函数</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>

        <h3>toggle()方法绑定多个函数</h3>

        <input id="btntest" type="button" value="点一下我" />

        <div>我是动态显示的</div>

        

        <script type="text/javascript">

            $(function () {

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

                    $("div").toggle(

                      function(){

                          $(this).attr("display", "none");

                      },

                      function(){

                          $(this).removeAttr("display");

                      })

                })

            });

        </script>

    </body>

</html>


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

没有啊

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

举报

0/150
提交
取消
jQuery基础课程
  • 参与学习       154768    人
  • 解答问题       7184    个

加入课程学习,有效提高前端开发速度

进入课程

现在1.9.0的版本是不是已经支持了?

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