如何在点击按钮后插入 Google Analytics?
2015-02-18
2692
我尝试在点击按钮后插入 Google Analytics 代码片段,因此将其计为一次访问。
是否可以在不重新加载页面的情况下执行此操作?
2个回答
您可以使用
事件跟踪
,即
trackPageView
(可在
David Walsh 的网站
上找到):
_gaq.push(['_trackPageview', 'url-to-track.html']);
在按钮上:
var button = document.getElementsByTagName("button")[0];
button.addEventListener("click", function() {
//Button click event
alert("Tracking pageview");
_gaq.push(['_trackPageview', 'url-to-track.html']);
}, false);
<button>Track me!</button>
回复您的评论:
var js = 'document.getElementsByTagName("button")[0].onclick=function(){alert("I\'m loaded!");}';
document.getElementsByTagName("button")[0].onclick = function() {
var script = document.createElement("script");
//Uncomment this and put the path for your file
//script.src = "path/to/script.js";
//Remove this, this is just for the demo
script.innerHTML = js;
document.body.appendChild(script);
alert("Appended script, click the button again");
};
<button>Load a JS file</button>
<p>Or in this case, a string</p>
Scott
2015-02-18
首先将 Analytics 代码保存到变量中。
然后在点击按钮时将其附加到
head
标记中。
ga = "(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-XXXXXXXX-X', 'auto');" +
"ga('send', 'pageview');"
$('a.button').on('click', function() {
$('head').append('<script>' + ga + '</script>');
});
David Morales
2015-02-19