10
09/2014
jquery 2 live event
jquery 现在(好像是1.43+以后就没了)没有 live 了。需要 live 的话
$('.mycontainer').on('click','button',function(){ console.log($(this)); })
而 .mycontainer 不是 js dom 出来的!大不了 $(document),这个可是永远存在的哦
live()
$(document).on('event', 'selector', function() {});
delegate()
$('selector').on('event', 'selector', function() {});
bind()
$('selector').on('event', function() {});