dpdjv9559 2017-02-09 11:15
浏览 64
已采纳

根据PHP条件触发javascript函数

I have a form that will return values in its URL, including whether the form is valid or not /contact2.php?result=contact-error-captcha&name=John /contact2.php?result=contact-ok&name=John

I am trying to trigger a Google Analytics Pageview depending on this value, which normally works in javascript like this: onclick="ga('send', 'pageview', '/mypage');"

Here is my last attempt, but it seems to not execute.

  <script type="text/javascript">
     function error-captcha() {
         alert("Hello! This works");
         ga('send', 'pageview', '/pages/contact-error-captcha');
     } 
     function contact-ok() {
         ga('send', 'pageview', '/pages/contact-ok');
     } 
     <?php if( $_GET['result'] == 'contact-error-captcha') : echo "error-captcha();"; endif; ?>
     <?php if( $_GET['result'] == 'contact-ok') :  echo "contact-ok();"; endif; ?>
 </script>

The problems I guess: - PHP should be before JS (but how?) - ga function should be "on" something (but how?)

I am not a pro coder, so any help appreciated.

  • 写回答

1条回答 默认 最新

  • doujiong9915 2017-02-09 11:33
    关注

    Issue in your function name not use '-' try this:

    <script type="text/javascript">
         function error_captcha() {
             alert("Hello! This works");
             ga('send', 'pageview', '/pages/contact-error-captcha');
         } 
         function contact_ok() {
             ga('send', 'pageview', '/pages/contact-ok');
         } 
         <?php if( $_GET['result'] == 'contact-error-captcha') : echo "error_captcha();"; endif; ?>
         <?php if( $_GET['result'] == 'contact-ok') :  echo "contact_ok();"; endif; ?>
     </script>
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥15 数值计算离散正交多项式
  • ¥30 数值计算均差系数编程
  • ¥15 redis-full-check比较 两个集群的数据出错
  • ¥15 Matlab编程问题
  • ¥15 训练的多模态特征融合模型准确度很低怎么办
  • ¥15 kylin启动报错log4j类冲突
  • ¥15 超声波模块测距控制点灯,灯的闪烁很不稳定,经过调试发现测的距离偏大
  • ¥15 import arcpy出现importing _arcgisscripting 找不到相关程序
  • ¥15 onvif+openssl,vs2022编译openssl64
  • ¥15 iOS 自定义输入法-第三方输入法