如何在shopify中使用google analytics跟踪未绑定的链接

时间:2016-04-29 06:31:31

标签: javascript php google-analytics

我有一个Shopify商店,在这里我试图跟踪我网站的出站链接。

即使我找到了一些代码。

ResultSet rs = CheckList.dbConnection.genericQuery(query);
if (rs != null) {
    jTable1.setRowSorter(null);                                             \\STEP 1
    jTable1.setModel(resultSetToTableModel(rs));                            \\STEP 2
    DefaultTableModel model = (DefaultTableModel) jTable1.getModel();       \\STEP 3
    TableRowSorter <DefaultTableModel> sorter = new TableRowSorter(model);  \\STEP 3
    jTable1.setRowSorter(sorter);                                           \\STEP 3
}

但此代码仅跟踪&#34; href&#34;链接。我想将提交按钮存储在去链接中。

我的提交按钮代码是

<script>
   $(document).ready(function(){
   var localserver = "trendsnaps.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>

&#34; product.metafields.google.custom_label_0&#34;是一个外部静态链接。

如何使用相同的方式跟踪此链接。

1 个答案:

答案 0 :(得分:0)

您可以将另一个函数链接到onclick处理程序

<input class="btn add-to-cart-btn" onclick="ga('send', 'event', 'links', ...);  window.open('{{ product.metafields.google.custom_label_0 }}');"...>