单击按钮后如何插入 Google 分析?

How to insert Google Analytics after clicking a button?

我尝试在单击按钮后插入 Google 分析代码段,因此将其计为一次访问。

是否可以在不需要重新加载页面的情况下完成?

你可以使用Event Tracking, namely trackPageView (found on David Walsh's site]:

_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>

首先将 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>');
});