(GTM)获取fb像素标准事件中previousElementSibling的textContent

时间:2017-06-27 21:05:57

标签: jquery facebook google-tag-manager facebook-pixel

我正在尝试将最近的html标记(带有id)的文本内容添加到我的facebook像素标准事件参数中。它应该适用于任何html标记,我希望它是灵活的,无论文本是否在div,span,p或其他内容。

下面是我添加到GTM标签的jQuery。请注意,{{Click Element}}是本机GTM变量。另请注意,我用于触发GTM标记的GTM触发器(因此下面的jQuery代码)已设置,因此在单击“buy”类时会启动脚本(请参阅HTML代码)。

<script>
  // look for the content_name
var presentElement = {{Click Element}};
var product_name_element = presentElement;
var cond = true;
while(cond){
    if(product_name_element.id=="product_name"){
        cond = false;
    }else{
        product_name_element = product_name_element.previousElementSibling;
    }
}
var product_name = product_name_element.textContent;
fbq('track', 'AddToCart', {
 content_name: product_name
});
</script>

HTML:

    <p id="product_name">Product 1</p>
    <p><a href="#" class="buy">Order</a></p>
    <p id="product_name">Product 2</p>
    <p><a href="#" class="buy">Order</a></p>
  • 所以基本上,在我的FB像素事件中,我应该有以下内容:
    • content_name:产品1
    • 单击第一个订单链接时
    • content_name:产品2
    • 单击第二个订单链接时

任何帮助都会非常高兴!

非常感谢。

1 个答案:

答案 0 :(得分:0)

在您的情况下,您需要创建触发器:

  • 活动类型:点击 - 只是链接
  • 点击元素;匹配css选择器; .buy enter image description here

然后创建标签:

  • 代码类型:自定义HTML
  • HTML

    <script> // look for the content_name var presentElement = {{Click Element}}; var product_name_element = presentElement.parentElement; var cond = true; while(cond && product_name_element!= null){ if(product_name_element.id=="product_name"){ cond = false; }else{ product_name_element = product_name_element.previousElementSibling; } } if (product_name_element != null) { var product_name = product_name_element.textContent; fbq('track', 'AddToCart', { content_name: product_name }); } </script>

  • 触发器 - 上面定义的触发器