返回首页

事件绑定支持

$('#list li').on('click',function(){
    $(this).append( '<em class="new-in"> 我是新来的,</em>' );
});

$('#list').on('click','.new-in',function(e){
    alert( '不管是不是延迟添加的dom, 都可以用代理绑定事件' );
});
Fork me on GitHub