我正在尝试在 HTML/JS 网页的代码中添加事件跟踪。因此,每次单击按钮时都会执行一个函数,并且对于每次这样的执行,我都需要一个不同的事件跟踪器。
例如:如果是第一次点击则增加第一次计数器。如果是第二次点击,增加第二次计数器。在这里不必担心这样的处决次数不超过三人。
到目前为止,函数看起来像这样(或多或少):
function next_click()
{
var _gaq = _gaq || [];
_gaq.push(['_setAccount', 'UA-xxxxxx-x']);
_gaq.push(['_setDomainName', 'none']);
_gaq.push(['_trackEvent', 'Follow', 'Facebook']);
_gaq.push(['_trackPageview']);
(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','//www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-xxxxxx-x', '127.0.0.1');
ga('send', 'pageview');
if (document.getElementById("step" + (current_step + 1)) == undefined)
return;
if (!validate_step(current_step))
return;
document.getElementById("step" + current_step).style.display = "none";
current_step++;
page_count++;
}
我在配置事件时遇到问题。