三种方法:
$(selector).live(events, data, handler); // jQuery 1.3+
$(document).delegate(selector, events, data, handler); // jQuery 1.4.3+
$(document).on(events, selector, data, handler); // jQuery 1.7+
1 $("p").live({ 2 click: function() { 3 $(this).after("<p>Another paragraph!</p>"); 4 }, 5 mouseover: function() { 6 $(this).addClass("over"); 7 }, 8 mouseout: function() { 9 $(this).removeClass("over"); 10 } 11 });