我有一個fullpage.js jquery單頁網站。我希望谷歌分析能夠跟蹤有人通過滾動進入單頁網站的另一個「頁面」。 頁面沒有加載,但域更改,如... /#SECTION1,... /#第2節谷歌分析和jQuery fullpage.js
www.cima-ecuador.com
我使用analytics.js ...已經發布的帖子並沒有真正幫助我。
頭:
<script>
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','http://www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-12543942-1', 'cima-ecuador.com');
ga('require', 'displayfeatures');
ga('send', 'pageview');
</script>
我的身體部分是像
<div class="section" id="section0">
</div>
<div class="section" id="section1">
</div>
SPA並不真正適合搜索引擎優化...您可以將分析代碼放入函數中,並在您每次輸入類似分析的章節時調用它('section1')。只是一個想法... – Geo