gpt4 book ai didi

javascript - 使用主题标签在 1 页网站上跟踪 Google Analytics

转载 作者:搜寻专家 更新时间:2023-11-01 04:58:25 24 4
gpt4 key购买 nike

我有一个很长的单页网站,当您通过滚动或点击到达某个部分时,在 URL 中使用主题标签。我可以使用什么技术在 Google Analytics 中将这些主题标签跟踪为“页面”?

最佳答案

(从 prior answer 回收 ...)

一般来说,您的代码可能如下所示:

_gaq.push(['_trackPageview',location.pathname + location.search  + location.hash]);

您可以将该代码绑定(bind)到每次您的应用程序中发生哈希更改时,或者您可以使用 generic hashchange plugin ,它使用 HTML5 onhashchange,以及一些针对旧浏览器的向后兼容黑客,并将此代码绑定(bind)到该事件,以便每次哈希更改时都会触发。

使用该插件,您的代码可能如下所示:

$(window).hashchange( function(){
_gaq.push(['_trackPageview',location.pathname + location.search + location.hash]);

})

关于javascript - 使用主题标签在 1 页网站上跟踪 Google Analytics,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8244877/

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