通用分析 - 转换未发送至Google Analytics

时间:2014-03-06 00:49:50

标签: event-tracking universal-analytics

这里是我的问题:我放置了代码来跟踪分析事件,但事件没有被发送到分析......所以我不能跟踪它们。

这里是代码(我使用UNIVERSAL ANALYTICS)

<script>
  (function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
  (i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
  m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
  })(window,document,'script','//www.google-analytics.com/analytics.js','ga');

  ga('create', 'UA-46738558-1', 'restaurant-mon-repos.fr');
  ga('send', 'pageview');

</script>

现在代码已插入我的页面。

请注意,我会在页面上的不同操作上跟踪不同按钮上的不同事件。

$op .= '<ul class="cro_directionscal">
                    <li class="dir-label">' .  __('To:','localize')   . '</li>
                    <li><strong>' .   stripslashes($postaddr)  .     '</strong></li>
                    <li class="dir-label">' .  __('From:','localize')   . '</li>
                    <li><input id="from-input" type=text value=""/></li>
                     <li><input id="to-input" type=hidden value="' .   stripslashes($postaddr)  .     '"/></li>
                    <li><input id="driveclick" class="" onclick="Demo.getDirections();ga("send","event","Bouton","Clic","itineraire");" type=button value="' .  __('Calculate:','localize')   . '"/></li>
                </ul>
                <p>' . __('The driving directions are interactive. Click on any bold text for further explanation of the route.', 'localize' ) . '</p>
                <div id="dir-container"></div>';

其他跟踪代码的第二部分:

 $op .= '<input type="submit" onClick="ga("send","event","bouton","clic","contact");" name="cro_form_sub" id="cro_form_sub" val="" .   __("Submit","localize") .  "">';

我不知道破折号是不是......

谢谢你们的帮助:)

1 个答案:

答案 0 :(得分:0)

对于在OnClick上具有2个功能的代码的第一部分,我刚刚删除了Google Analytics的部分,然后我将其直接插入到Demo.getDirections()函数中并且它可以正常工作。

对于第二部分,我将ga()函数中的(“)替换为:( \')转义简单引用。它也有效!:)