我正在处理产品列表页面更多产品加载无限滚动 问题是当新页面加载时,当用户单击“添加到购物车”时,加载页面上的 jQuery on click 事件将不会执行。如果使用 jquery load() 加载该脚本,它就会工作。但无限滚动正在使用我不知道的其他东西。
$(document).ready(function() {
jQuery_1_6_1('#mycontent').infinitescroll({
navSelector: "#mynext:last",
nextSelector: "#mynext:last",
itemSelector: "#mycontent",
debug: false,
dataType: 'html',
maxPage: <?php echo $pages_load;?>,
path: function(index) {
return "pages/index" + index + ".html";
}
// appendCallback : false, // USE FOR PREPENDING
}, function(newElements, data, url) {
});
});