0

作为一名 Javascript 新手,我在我们的网站上实施 Google 的 Adwords GCLID 跟踪时遇到了一些麻烦。我正在关注他们在此处显示的代码示例https://support.google.com/adwords/answer/2998031

您可以看到正在存储的 cookie,但是当尝试检索它并填充隐藏的表单字段时,结果只是空白。我使用了其他变体,但这只会导致“未定义”作为字段值。

这是我正在使用的代码

简化的 HTML 表单

<form class="signup-form" name="signupform" method="post" action="step2.php">
    <input type="hidden" name="gclid" id="gclid" value="" />
</form>

Cookie 编写脚本

<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>

Cookie 读取脚本

<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; 
  } 

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

2 回答 2

1
function() {      
    document.getElementById('gclid').value = readCookie('gclid'); 
} 

这是一个从未调用过的没有名称的函数。尝试只替换它

document.getElementById('gclid').value = readCookie('gclid'); 

我重写了您的编写脚本,我认为您的 cookie 从未设置过。

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");
    if(!gclsrc||-1 !== gclsrc.indexOf("aw")) {
        setCookie("gclid", gclid, 90);
        alert("Cookie Set!");
    }
}
于 2013-10-16T15:10:38.917 回答
0

从https://support.google.com/adwords/answer/3285060修改的工作脚本。我刚刚将 document.onload 更改为 window.onload 似乎 DOM 中的屏幕外发生了太多事情。

<script> 
 window.onload = function getGclid() {        
   document.getElementById("gclid").value = (name = new    
 RegExp('(?:^|;\\s*)gclid=([^;]*)').exec(document.cookie)) ? 
 name.split(",")[1] : ""; } 
</script>
于 2013-10-17T14:28:13.443 回答