
这是我新的 GA 统计代码:
<!-- Global site tag (gtag.js) - Google Analytics --> <script async src="https://www.googletagmanager.com/gtag/js?id=UA-92sd40dfd-2"></script> <script> window.dataLayer = window.dataLayer || []; function gtag(){dataLayer.push(arguments);} gtag('js', new Date()); gtag('config', 'UA-92624089-2'); </script> 这是我写的 gtag 事件跟踪:
<script type="text/Javascript"> window.addEventListener('load', function() { jQuery('[href="mailto:[email protected]"]').click(function(){ gtag('event', 'E-mail', { 'event_action': 'click' }); }); jQuery('#submit').on('click', function(){ gtag('event', 'InquiryProduct', { 'event_action': 'click' }); }); }) </script>