事件未在Google Analytics中捕获

时间:2016-04-28 13:08:33

标签: javascript google-analytics shopify google-analytics-v4

我将捕获Shopify中的外发链接。因为我在网上找到了一些解决方案

这是我的代码

<script>
    $(document).ready(function(){
       var localserver = “mysite.com”;
     $(“a”).not(“a[href^=’http://”+localserver+”‘]”).not(“a[href^=’https://”+localserver+”‘]”).click(function(){
        $(this).attr(“target”, “blank”);
          ga(‘send’, ‘event’, ‘links’, ‘click’, $(this).attr(‘href’));
            });
             });
        </script>

(参考链接reference link

此代码我已粘贴在我的帐户中。但我仍然没有在谷歌分析中得到任何事件。

为什么不能正常工作?我需要在谷歌分析中创建任何事件吗?

0 个答案:

没有答案