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 事件绑定的主要内容,如果未能解决你的问题,请参考以下文章