gpt4 book ai didi

paypal - Google Analytics Paypal 购买按钮事件未触发

转载 作者:太空宇宙 更新时间:2023-11-03 15:46:36 26 4
gpt4 key购买 nike

我正在尝试跟踪对 Paypal 订单按钮的点击,我的代码如下所示......

<form onclick="_gag.push(['_trackEvent','Category','Action','Label']);" action="https://www.paypal.com/cgi-bin/webscr" method="post">
<input type="hidden" name="cmd" value="_xclick">
<input type="hidden" name="business" value="FV4TYGHXWUGHT">
<input type="hidden" name="lc" value="US">
<input type="hidden" name="item_name" value="Test Item">
<input type="hidden" name="amount" value="5.00"><input type="hidden" name="currency_code" value="USD">
<input type="hidden" name="button_subtype" value="services">
<input type="hidden" name="no_note" value="1">
<input type="hidden" name="no_shipping" value="1">
<input type="hidden" name="bn" value="PP-BuyNowBF:btn_buynowCC_LG.gif:NonHosted">
<input type="hidden" name="custom" value="">
<input type="hidden" name="notify_url" value="http://www.mydomain.com/notify.html">
<input type="hidden" name="return" value="http://www.mydomain.com/return.html">
<input type="image" src="http://www.mydomain.com/images/buynow.png" name="submit"/>
<img style="margin-top:20px;" alt="" border="0" src="https://www.paypalobjects.com/en_GB/i/scr/pixel.gif" width="1" height="1">
</form>

这不起作用,点击时不会触发任何事件,分析在页面上工作正常,如果我使用它......

<a href="http://www.testurl.com" target="_blank" onclick="_gaq.push(['_trackEvent', 'Click-Through', 'Test1', 'Test2']);">TEST LINK</a>

它工作正常,我可以在实时分析中看到报告的事件

谁能看出我做错了什么?

最佳答案

我认为您面临的问题是页面导航发生在 GA 有时间触发事件之前。您可以使用 this 上提供的示例页面来解决您的问题。

首先,在头部添加以下内容:

<script type="text/javascript">
function trackOutboundLink(form, category, action, label) {

try {
_gaq.push(['_trackEvent', category , action, label]);
} catch(err){}

setTimeout(function() {
form.submit();
}, 100);
}
</script>

然后,按如下方式更改您的跟踪:

<form onsubmit="trackOutboundLink(this, 'category', 'action', 'label'); return false;" action="https://www.paypal.com/cgi-bin/webscr" method="post">

**请注意,我还没有对此进行测试,但我知道这样的事情应该有效。一旦您尝试了此操作但它不起作用,请告诉我,我可以找出这里是否有问题。

关于paypal - Google Analytics Paypal 购买按钮事件未触发,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20386794/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com