手动进行Adobe目标高级点击跟踪(转换跟踪)

时间:2016-09-05 12:26:00

标签: adobe target

有人可以帮助我使用新的Adobe Target Premium工具吗?

有没有办法在不使用VES的情况下手动跟踪点击转化?

目前我正在使用最新的mbox版本的mbox,希望有人可以帮助我。

1 个答案:

答案 0 :(得分:0)

您可以简单地定义一个mbox并从javascript中的元素click处理程序更新它。然后,您可以将此mbox作为转换指标进行监听。

示例代码:

    // when your script loads
    mboxDefine('unused string', 'Name of the Mbox');

    ...
    $(document).ready(function() {
      $('#element-to-track').click(function() {
        // fire the mbox (Name of the Mbox) you can see it as a conversion metric
        mboxUpdate('Name of the Mbox');
      }
    });

单击该元素时,您应该看到ajax?mbox ...请求以mbox的名称作为请求参数发出。

如果您想测量将页面路由到其他位置的点击,请不要忘记向点击处理程序添加一些超时(500毫秒),以便请求有时间完成。