我正在使用event.stopPropagation()
,但我在使用父级.live()
处理程序时遇到问题。
//does not work
$("#testlink").live({
click: function(event)
{
alert('testlink');
}
});
//works great!
$("#testlink").click(function() {
alert('testlink');
});
我必须使用.live()
因为内容是用AJAX加载的。
有人可以帮我解决这个问题吗?
我如何使用更多这样的类或ID?
$('#div1', '#div2', '#div3').on('click', 'a.testlink', function(){
alert('testlink');
});
这怎么可能?