尝试首次实现Onclick事件

时间:2018-01-15 15:17:07

标签: event-tracking

我正在尝试跟踪链接上的点击次数,而我使用的代码是:

href="https://mattressfirmnewmexico.com/wp-content/uploads/2017/09/1.pdf" onClick="ga('send', 'event', 'Coupon Click', 'click', 'Coupon Savings $100 Off');

我也在GA中设定了目标,但是当我尝试检查我实现的代码是否正确时,我无法在实时事件部分看到任何数据。我可以将自己视为活跃用户,但事件没有数据。如果你们都能看到,附上的就是图片。

我不明白我哪里出错了,我也无法看到实时数据。

我是第一次实施此项目,所以我们将不胜感激。

GA快照:

enter image description here

1 个答案:

答案 0 :(得分:0)

您必须添加双引号:

href="https://mattressfirmnewmexico.com/wp-content/uploads/2017/09/1.pdf" onClick="ga('send', 'event', 'Coupon Click', 'click', 'Coupon Savings $100 Off');"

Code Gorilla所说