我使用的是this,我讓它跟蹤出站鏈接,但我希望我的網頁有效。通過Google Analytics跟蹤出站鏈接的HTML有效方式?
這是我得到的錯誤:沒有「OnCick」屬性
的HTML是:
<p>View some of our student produced videos
on <a href="http://www.youtube.com/user/johndoe" onClick="javascript: pageTracker._trackPageview('/outgoing/youtube.com/user/johndoe');" rel="external">YouTube!</a></p>
我將此添加到我的JavaScript嵌入的文件,來跟蹤所有出站鏈接:
$(document).ready(function() {
$('a[href^=http]:not("[href*=://' + document.domain + ']")').click(function() {
pageTracker._trackPageview('/out/'+$(this).attr("href"));
});
});
所以現在我的js嵌入文件如下所示。我發現我調用$(文件)。就緒(函數(){在兩個片段開始時,他們都應該進入一個?
$(document).ready(function() {
// opens links into separate window
$('A[rel="external"]').click(function() {
window.open($(this).attr('href'));
return false;
});
});
$(document).ready(function() {
$('a[href^=http]:not("[href*=://' + document.domain + ']")').click(function() {
pageTracker._trackPageview('/out/'+$(this).attr("href"));
});
});
您的文檔類型是什麼? – 2009-11-30 21:36:41