gpt4 book ai didi

jquery - Colorbox 和 Google Analytics

转载 作者:行者123 更新时间:2023-12-01 06:00:27 26 4
gpt4 key购买 nike

我们有一个 WordPress 网站,我们希望跟踪何时有人浏览上述文章的 WordPress 画廊。现在我们正在使用

<script>
$("a[rel='gallery1']").colorbox({onComplete:function()
{_gaq.push(['_trackPageview', $(this).attr('href')]);}});
</script>

它工作得很好,但似乎只适用于最初的打开。有什么想法如何跟踪“下一个”和“上一个”点击吗?我们已经联系了 Colorbox 的开发者,但也想将其发布在这里。

最佳答案

这应该适用于“下一个”和“上一个”点击。我不确定手动跟踪浏览量时使用相对 URL 的情况如何。我认为这不是问题,但使用 this.href 而不是 $(this).attr('href') 可能会更好,因为这会给出绝对 URL 而不是 href 属性的确切值。例如:

<a href='../../pic1.jpg'>1</a>
<script>
// for http://example.com/dir1/dir2/page.html
$('a').attr('href'); // returns '../../pic1.jpg'
$('a')[0].href; // returns 'http://example.com/pic1.jpg'
</script>

关于jquery - Colorbox 和 Google Analytics,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12010992/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com