0

Google からのオフライン コンバージョンのトラッキングの手順に従っています。Cookie を設定できるようにしたい - Cookie を読み取り、フォームの非表示フィールドに設定してから、フォームにメールで送信します。

Googleが提供するコードは次のとおりです。

<script type="text/javascript">

function setCookie(a,d,b){var c=new Date;c.setTime(c.getTime()+864E5*b);b="; expires="+c.toGMTString();document.cookie=a+"="+d+b}function getParam(a){return(a=RegExp("[?&]"+a+"=([^&]*)").exec(window.location.search))&&decodeURIComponent(a[1].replace(/\+/g," "))}var gclid=getParam("gclid");if(gclid){var gclsrc=getParam("gclsrc");(!gclsrc||-1!==gclsrc.indexOf("aw"))&&setCookie("gclid",gclid,90)};

</script> 

<script> 
  function readCookie(name) { 
  var n = name + "="; 
  var cookie = document.cookie.split(';'); 
  for(var i=0;i < cookie.length;i++) {      
      var c = cookie[i];      
      while (c.charAt(0)==' '){c = c.substring(1,c.length);}      
      if (c.indexOf(n) == 0){return 
  c.substring(n.length,c.length);} 
  } 
  return null; 
  } 

  window.onload = function() {      
      document.getElementById('gclid').value = 
  readCookie('gclid'); 
  } 
  </script>

 <form action="" name="myForm">         
         Name: <input type="text" name="name">      
         <input type="hidden" id="gclid" name="gclid" value="">         
         <input type="submit" value="Submit Form" name="btnSubmit">     
   </form>

両方の JS は Joomla 2.5 のテンプレートにあり、フォームは記事にあるだけです。送信を押すと、メールが送信され、「gclid」が未定義として返されます。

Cookieを設定していませんか-Cookieを読んでいますか?テンプレートを機能させるには、テンプレートのどこかで「setcookie」を呼び出す必要がありますか?

4

1 に答える 1

0

追加するだけです:

<input type="hidden" id="google_code" name="google_code" value="<?php echo $_GET['gclid'];?>">

あなたの形に。私の最初の投稿の上記のコードは、それに対して何もしていませんでした。

于 2013-12-06T16:01:27.770 に答える