1
A
回答
1
您是否正在追蹤傳出/外部鏈接?沒有Google Analytics功能,稱爲_gaLink
。你能發佈你的代碼片段嗎?
_link()
用於X-網域跟蹤,請參閱documentation
如果您只是想跟蹤「出站鏈接」,即其他網站的鏈接,然後使用這段代碼(不是這需要jQuery的) :
///////////////////
// _trackOutbound
jQuery(document).ready(function($) {
$('a[href^="http"]:not([href*="//' + location.host + '"])').live('click', function(e) {
_gaq.push(['_trackEvent', 'outbound', 'click', this.href.match(/\/\/([^\/]+)/)[1]]);
_gaq.push(['t2._trackEvent', 'outbound', 'click', this.href.match(/\/\/([^\/]+)/)[1]]);
});
});
+0
你好,這裏是代碼,謝謝。 exampleurl.org – jelly46
+1
我剛剛更新了我的答案,以包含一段jQuery,您可以使用它,而無需手動更新所有HTML錨點。只需在每個頁面上包含該jQuery。 – crmpicco
相關問題
- 1. 爲什麼FocusManager.GetFocusedElement(this)總是返回null?
- 2. 這是什麼回報
- 3. 什麼是「按需回報」?
- 4. 這是什麼回報?
- 5. 「this」是指什麼
- 6. 「this」是指什麼?
- 7. d3.select(this)返回什麼?
- 8. <form action =「javascript:alert(this);」>什麼是「this」?
- 9. 'this'的價值是什麼?
- 10. 「$ this」的用途是什麼?
- 11. 這是什麼意思:&** this;
- 12. `this`指的是什麼?
- 13. `bind(this)`是什麼意思?
- 14. $ this->是什麼意思?
- 15. 'this'的價值是什麼?
- 16. cancel(getIntent()。getExtras()。getInt(「notificationID」));什麼是回報...?
- 17. 什麼是任務的回報?
- 18. 什麼是回報;在JavaScript中做?
- 19. 那是什麼樣的回報?
- 20. 什麼是引用回報的意義?
- 21. 我的回報應該是什麼?
- 22. 計劃中的「回報」是什麼?
- 23. 「嚴格回報」的語義是什麼?
- 24. 班級的回報是什麼?
- 25. 什麼是非本地回報?
- 26. 「this」,「$ this」和「$(this)」之間的區別是什麼?
- 27. 爲什麼`typeof this`返回「object」?
- 28. 爲什麼sizeof(this-id)返回8?
- 29. 「this」在JS中返回什麼?
- 30. C++ - 爲什麼operator =返回* this的引用而不是* this的對象?
_gaLink不是Google Analytics(分析)功能。也許這是一個包裝,你必須有一個分析功能。因此,如果它在您的網站中定義,請同時發佈_gaLink的代碼。 – Eduardo
它實際上是從這個SO帖子中的答案:http://stackoverflow.com/questions/9379615/onclick-for-google-analytics-and-target-blank-the-link-does-not-work儘管我是不清楚爲什麼這個函數有第二個參數。 – s6mike