首页 > 代码库 > on的用法
on的用法
<!DOCTYPE html><html><head><script src="http://code.jquery.com/jquery-1.11.1.min.js"></script> <meta charset="utf-8"> <title>JS Bin</title></head><body> <a class=‘alink‘ href=http://www.mamicode.com/‘#‘>发送验证码>
css
a{ display:box; display:-webkit-box; box-pack:center; box-align:center; width:100px; height:100px; -webkit-box-pack:center; -webkit-box-align:center;}.alink{ background-color:red;}.disable{ background-color:grey;}
js
$(function(){ $(document).on(‘click‘,‘a.disable‘,function(){ //只执行333,222不执行 alert(333); }); $(‘a.alink‘).on(‘click‘,function(){ $(this).addClass(‘disable‘); }); $(‘a.disable‘).on(‘click‘,function(){ //对静态元素有效,但是绑定动态生成的a元素的事件时无效: alert(222); });});
http://jsbin.com/xowafesoxi/2/
on的用法
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。