我需要Jquery为某些插件进行事件跟踪。我可以使用以下内容完成所有工作:
<script src="//code.jquery.com/jquery-1.11.1.min.js"></script>
&安培;
$('.home .et_pb_more_button').on('click',function() {
ga('send', 'event', 'button', 'click', 'case study');
});
问题... jquery代码破坏了网站的功能。如何跟踪Google Analytics中的事件,但不能破坏jquery功能?
该网站是directiveconsulting.com
答案 0 :(得分:1)
WordPress通常会自动加载jQuery以用于管理方面的其他事情。
尝试在noConflict
模式下使用jQuery或使用jQuery
代替$
调用该函数
jQuery('.home .et_pb_more_button').on('click',function() {
ga('send', 'event', 'button', 'click', 'case study');
});
请在此处阅读noConflict
:Documentation