我试图弄清楚如何跟踪网站中的某些页面,这些页面在URL为12345.com的页面中单击后打开,看起来像12345.com#54321(不同的结尾)。在这些页面上看不到GA。有没有办法追踪这些页面?
答案 0 :(得分:0)
Google Analytics(分析)没有开箱即用地跟踪锚链接,您将需要编辑跟踪代码。
尝试以下操作
如果使用Universal Analytics.js ,请在此进行编辑:
ga('send', 'pageview');
为此:
ga('send', 'pageview', {'page': location.pathname + location.search + location.hash});
如果使用gtag.js ,请从此进行编辑:
gtag('config', 'UA-XXXXX-Y');
为此:
gtag('config', 'UA-XXXXX-Y', {
'page_path': location.pathname + location.search + location.hash
});