动态生成DOM的问题

Jquery中对ajax动态生成的html标签不会响应 $(selector).click(function.. 或者$(selector).bind(‘click’,function.., 需要用.live
jQuery 1.7 开始,不再建议使用 .live() 方法。请使用 .on() 来添加事件处理。使用旧版本的用户,应该优先使用 .delegate() 来替代 .live()。