google Adwords conversion script

前端 未结 4 1540

I have a form, that after submit the form I want to run the script of google Adwords conversion.

I\'m using ajax and jQuery:

var dataString = \'name=         


        
4条回答
  •  北荒
    北荒 (楼主)
    2020-12-31 21:52

    Just a guess, but may be conversion script expects to see it's variables in Global scope. In your code you define it in local scope - under callback

    So instead of var google_... write window.google_...

    HTH

提交回复
热议问题