jquery 事件绑定

Posted 李瑞鑫

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了jquery 事件绑定相关的知识,希望对你有一定的参考价值。

1

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>Title</title>
</head>
<body>



<div class=‘c1‘>
                    <div>
                        <div class=‘title‘>菜单一</div>
                        <div class=‘content‘>内容 一</div>
                    </div>
                    <div>
                        <div class=‘title‘>菜单一</div>
                        <div class=‘content‘>内容 一</div>
                    </div>
                    <div>
                        <div class=‘title‘>菜单一</div>
                        <div class=‘content‘>内容 一</div>
                    </div>
                    <div>
                        <div class=‘title‘>菜单一</div>
                        <div class=‘content‘>内容 一</div>
                    </div>
                </div>


<script src="jquery-1.12.4%20(1).js"></script>

<script>
    $(".title").click(function () {
        console.log($(this).text(),1)
    })
    $(".title").bind(click,function () {
        console.log($(this).text(),2)
    })
    //委托
    $(".c1").delegate(.title,click,function () {
        console.log($(this).text(),3)
    })
    $(.c1).on(click,.title,function () {
        console.log($(this).text(),4)
    })
</script>
</body>
</html>

 

以上是关于jquery 事件绑定的主要内容,如果未能解决你的问题,请参考以下文章

jQuery 判断元素上是不是绑定了事件

jquery的事件绑定

jQuery:绑定和取消绑定实时点击事件

jQuery事件绑定和委托实例

JQuery入门——用one()方法绑定事件处理函数(仅触发一次)

JQuery 绑定事件