有哪些好的库/平台用于捕获,记录和运行Javascript事件的分析?最好是开源......
答案 0 :(得分:0)
我认为Google Analytics可以使用自定义变量来完成工作。 以下是用于记录自定义变量的代码片段...带注释:
_gaq.push(['_setCustomVar',
1, // This custom var is set to slot #1. Required parameter.
'Section', // The top-level name for your online content categories. Required parameter.
'Life & Style', // Sets the value of "Section" to "Life & Style" for this particular aricle. Required parameter.
3 // Sets the scope to page-level. Optional parameter.
]);
...没有评论:
_gaq.push(['_setCustomVar', 1, 'Section', 'Life & Style', 3]);
以上内容摘自Google网站http://code.google.com/apis/analytics/docs/tracking/gaTrackingCustomVariables.html上的页面 - 绝对值得一看。
最好的部分是,自定义变量的查看方式与页面访问者等相同,实际上可以在同一个图表上查看。看看:http://techpad.co.uk/custom/images/medium/4debdf844cf3b.jpg
我希望这会有所帮助。