我在新的WP 4.9中为小部件图像添加了一个自定义url。现在,我想向链接添加onclick事件。
a标记如下所示
<a href="http://domain.com/this-is-a-page" class="" rel="" target=""></a>
我想要这样的
<a href="http://domain.com/this-is-a-page" onclick="ga(\'send\', \'event\', \'Sidebar Image\', \'Promo Image\', \'Clicked\');"></a>
我该怎么做?
最合适的回答,由SO网友:Drupalizeme 整理而成
我会使用Google Tag Manager firing options:
或
老式jQuery解决方案:
function($){
$(\'.widget_class\').click(function() {
ga(\'send\', \'event\', \'Sidebar Image\', \'Promo Image\', \'Clicked\');
});
})(jQuery);
现在,您只需将类名添加到链接中。