谷歌分析跟踪链接点击表单提交给多个跟踪器
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了谷歌分析跟踪链接点击表单提交给多个跟踪器相关的知识,希望对你有一定的参考价值。
<p>usage:<code><a href="" onclick="recordOutboundLink(link, category, action, opt_label, opt_value);return false;">
<form id="uniqueID" onsubmit="trackFormSubmit(form, category, action, opt_label, opt_value);return false;"></code></p>
var arrTracker = ['trackerName1', 'trackerName2']; // tracker names // tracking form submit function trackFormSubmit(form, category, action, opt_label, opt_value) { for (var i = 0, ii = arrTracker.length; i < ii; i++) { _gat._getTrackerByName(arrTracker[i])._trackEvent(category, action, opt_label, opt_value); } setTimeout("document.getElementById('"+form.id+"').submit();", 100); return false; } // tracking link click function recordOutboundLink(link, category, action, opt_label, opt_value) { for (var i = 0, ii = arrTracker.length; i < ii; i++) { _gat._getTrackerByName(arrTracker[i])._trackEvent(category, action, opt_label, opt_value); } setTimeout('document.location = "' + link.href + '"', 100); return false; } <a href="" onclick="recordOutboundLink(link, category, action, opt_label, opt_value);return false;"> <form id="uniqueID" onsubmit="trackFormSubmit(form, category, action, opt_label, opt_value);return false;">
以上是关于谷歌分析跟踪链接点击表单提交给多个跟踪器的主要内容,如果未能解决你的问题,请参考以下文章