嗨,jQuery懸停事件不適用於附加對象通過AJAX。jQuery:懸停事件不適用於附加對象與AJAX請求
我添加<div class="item ..."> ... </div>
與
Ajax調用:
var jqxhr = $.ajax('{{ path('nextPage_url') }}'+page)
.always(function(data) {
$("#container").append(data).masonry('reload');
});
懸停事件代表團:
我徘徊在.item
類元素,它 爲預加載數據工作正常,但通過ajax請求添加新的<div>
其不工作
$('.item').hover(
function(){
$(this).addClass('img-polaroid-shadow').removeClass('img-polaroid');
},
function(){
$(this).removeClass('img-polaroid-shadow').addClass('img-polaroid');
}
);
感謝
用['。對()'](http://api.jquery.com/on/)與事件代理 – billyonecan 2013-05-07 10:52:58
工作樣品試試我('hover',function(){alert(2);});'並且不起作用... – 2013-05-07 11:02:26