触发google adwords转换jquery

时间:2014-09-25 12:36:35

标签: jquery google-adwords

我正在尝试使用jQuery触发Google Adwords转换,但没有任何运气。这是我正在使用的代码。

该代码用于提交表单,然后通过电子邮件发送给我。唯一不起作用的部分是谷歌转换。

$.post('submit.php', $("form#easy").serialize(), function (data) {

        if (data == "Message sent")
        {
            $("div#error").hide();
            $("div#success").slideDown("fast");

            //Scroll to top of #form div - Useful if you have a fixed header
            var destination = $('div#form').offset().top - 0; //If you are using fixed header, change 0 to any height you wish
            $("html:not(:animated),body:not(:animated)").animate({
                scrollTop: destination
            }, 200);

            // Clear form data
            $("#easy").reset();
            //Reload captcha when message is sent
            $('#vimage').attr('src', $('#vimage').attr('src')+'?'+Math.random());

            // Track conversion
            var google_conversion_id = "1016403774";
            var google_conversion_language = "en";
            var google_conversion_format = "3";
            var google_conversion_color = "ffffff";
            var google_conversion_label = "wgx7CNj0vVYQvq7U5AM";
            var google_remarketing_only = false;
            $.getScript("http://www.googleadservices.com/pagead/conversion.js");

        } else {
            //PHP validation
            $("div#error").html(data).slideDown("fast");

            //Scroll to top of this div - 70px from the top of your view, change this to whatever number you wish
            var destination = $('div#form').offset().top - 70;
            $("html:not(:animated),body:not(:animated)").animate({
                scrollTop: destination
            }, 200);

        }
    });
    return false;

任何想法可能出错?

谢谢, 布拉德利

1 个答案:

答案 0 :(得分:0)

我会试着看看这个答案:

How do I adapt a Google AdWords tracking pixel for use in an AngularJS app?

有人询问AngularJS,但答案是一样的 - 您应该使用转换标记的异步版本,而不是试图将标准版本强制转换为异步环境。