我正在处理渐进式页面加载脚本,当到达页面底部时,新页面将连续加载。我使用ajax从服务器通过jQuery ajax动态获取数据,返回数据将返回新帖子的url及其内容。
我的问题是我应该使用什么代码将我返回的帖子提交给分析,以便将其注册为有效的页面视图?
$.ajax({
type: 'GET',
url: 'http://somedomain.com/fetch_pages.php',
data: { 'page': this.$loadMoreCounter , 'section': that.$section },
dataType: 'json',
success: function (data) {
//analytic code upon each successful callback.
});