$( "a.offsite" ).live( "click", function() { alert( "Goodbye!" ); // jQuery 1.3+ });//下面两个,第一个dom元素,不应该出现在第二个选择器中 $( document ).delegate( "a.offsite", "click", function() { alert( "Goodbye!" ); // jQuery 1.4.3+ }); $( document ).on( "click", "a.offsite", function() { alert( "Goodbye!" ); // jQuery 1.7+ });
时间: 2024-11-11 01:37:02