我正在尝试为我的帖子中的链接添加出站链接跟踪。但仅适用于儿童时期没有img的链接。我的代码如下,但没有将我的类添加到我帖子中的任何链接:
jQuery(document).ready(function(){
//outbound post links
//var outbound_post_name = jQuery(this).find(\'h2.title\').text();
var post_link = jQuery(\'.post .entry\').find(\'a\');
if( jQuery(post_link).has(\'img\') ){
//do not add class or tracking if the link has an img
}
else{
jQuery(post_link).addClass(\'outbound-link\');
jQuery(post_link).click(function(){
_gaq.push([\'_trackEvent\', \'Outbound Link\', \'Click\', outbound_post_name + \'Post Link\', \'\', false]);
});
}
});
我还需要获取标签的帖子标题,但不确定如何将其设置为“outbound\\u post\\u name”。
如果我删除“If”语句,则所有链接都会得到类“outbound link”,我缺少什么?
谢谢