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」を呼び出す必要がありますか?