我有一個無限滾動實施的新聞源。您可以通過點擊評論泡泡來評論新聞推送上的活動,這會降低添加評論表單的效率。jquery無法在網頁上使用無限滾動頁面後工作
問題是評論泡泡向下滑動僅適用於加載到第一頁上的活動,而不適用於那些通過AJAX隨後加載無限滾動的活動。
這是用於滑動的JQuery。
jQuery(function($) {
$(".comment-bubble").click(function(e) {
e.preventDefault();
$(this).closest(".activity").find(".add-comment").slideToggle();
});
});
感謝您的幫助!
嘗試'$(document).on('click','.comment-bubble',function(e){// here here});'' – 2014-11-08 05:16:21
謝謝Mohit Arora!這工作! – alejoriveralara 2014-11-08 05:18:58