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>
【推荐】编程新体验,更懂你的AI,立即体验豆包MarsCode编程助手
【推荐】凌霞软件回馈社区,博客园 & 1Panel & Halo 联合会员上线
【推荐】抖音旗下AI助手豆包,你的智能百科全书,全免费不限次数
【推荐】轻量又高性能的 SSH 工具 IShell:AI 加持,快人一步