美文网首页
事件绑定

事件绑定

作者: 琪33 | 来源:发表于2018-04-30 08:54 被阅读0次
        <script src="jquery-1.11.1.js"></script>
        <script>
    
            //这种绑定事件的方法是不会层叠的。
    //        $(document).click(function () {
    //            alert(1);
    //        });
    //        $(document).click(function () {
    //            alert(2);
    //        });
    
            //第二种绑定:bind
    //        $(document).bind("click mouseenter", function () {
    //            alert(1);
    //        })
    //        $(document).bind("click mouseenter", function () {
    //            alert(2);
    //        })
    
            //第三种
    //        $(document).delegate(".box","click mouseenter", function () {
    //            alert(1);
    //        })
    
            //第四种(重点)
    //        $(document).on("click mouseenter",".box",{"name":111}, function (event) {
    //            alert(event.data.name);
    //        });
    
    //        $(document).on("click",".box", function () {
    //           alert(1);
    //        });
    
    
        </script>
    
    </head>
    <body>
    <div class="box" style="width: 100px;height: 100px;background-color: pink;"></div>
    </body>
    

    相关文章

      网友评论

          本文标题:事件绑定

          本文链接:https://www.haomeiwen.com/subject/lxlzlftx.html