English 中文(简体)
利用斜体在1页网站上跟踪谷歌分析
原标题:Tracking Google Analytics on a 1 page website using hashtags

我有一个很长的单页网站,使用URL的斜体,然后从滚动或点击进入某一部分。 我能利用什么技术来追踪这些信标在角角分析中的“页数”?

最佳回答

(Recycling from a prior answer...)

一般来说,你的法典可以这样考虑:

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

You could either bind that code to every time you have a hash change within your application, or you could use a generic hashchange plugin, that uses the HTML5 onhashchange, and some backwards compatible hacks for older browsers, and bind this code to that event, so that it fires every time your hash changes.

借助这一gin,你的法典可考虑:

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

})
问题回答

页: 1

我认为,你可以使用像这样的麻醉分析器。

 onclick="javascript:_gaq.push([ _trackPageview , /PDF/EXAMPLE PDF NAME ]);"

然后,在你具体指明的圆形结构中记录点击。





相关问题
CSS working only in Firefox

I am trying to create a search text-field like on the Apple website. The HTML looks like this: <div class="frm-search"> <div> <input class="btn" type="image" src="http://www....

image changed but appears the same in browser

I m writing a php script to crop an image. The script overwrites the old image with the new one, but when I reload the page (which is supposed to pickup the new image) I still see the old one. ...

Firefox background image horizontal centering oddity

I am building some basic HTML code for a CMS. One of the page-related options in the CMS is "background image" and "stretch page width / height to background image width / height." so that with large ...

Separator line in ASP.NET

I d like to add a simple separator line in an aspx web form. Does anyone know how? It sounds easy enough, but still I can t manage to find how to do it.. 10x!

热门标签