我正在使用以下函数通过 Ajax 重载我的网站 url 链接:
$(document).ready(function() {
$('.insite').live("click", function(ev) {
if ( history.pushState ) history.pushState( {}, document.title, $(this).attr('href'));
ev.preventDefault();
$('#content').fadeOut().load($(this).attr('href')+' #content', function() {
$(this).fadeIn();
});
});
});
我想知道是否可以将 Google Analytics 跟踪和 Disqus 加载集成到该功能中。这是我尝试加载 disqus 的代码,但由于某些原因它会加载来自其他网站的评论:
window.disqus_no_style = true;
$.getScript("http://disqus.com/forums/mnml/embed.js")
谢谢