这个代码是否适合UA实现跟踪hashchange Urls:
ga ('send', 'pageview', {
'page': location.pathname+location.search+location.hash,
'title': location.pathname+location.search+location.hash});
每次事件发生时,它会在GA中记录多少次综合浏览量请求?
答案 0 :(得分:1)
每次执行该行代码时,都会触发一个Google Analytics Pageview。有关网页浏览跟踪的详细信息,请参阅here。
此外,this Chrome extension可能会有所帮助。它会打印发送到JS控制台的任何Google Analytics点击信息。