IE上的贝宝按钮问题

时间:2011-05-29 08:03:15

标签: html internet-explorer button paypal

您好 在我的应用程序中,我有一个PayPal立即付款按钮(使用Sandbox模式atm)...它在除IE之外的每个浏览器都很有用......发生了什么?在每个浏览器(FF,Chrome,Opera)中,当我按下按钮时,它会将我重定向到我想要的页面(您为该项目付费的页面),但在IE中它将我重定向到正常的登录页面,而不是重定向到的页面我要付钱吗?

谁知道原因是什么?这是我必须完成的最后一件事才能使我的应用程序正常运行。

这是我的按钮代码:

<form action="https://www.sandbox.paypal.com/cgi-bin/webscr" method="post">
<input type="hidden" name="cmd" value="_xclick" />
<input type="hidden" name="business" value="ABCDEFGHXXXX" />
<input type="hidden" name="lc" value="AU"/ >
<input type="hidden" name="item_name" value="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="rm" value="1" />
<input type="hidden" name="return" value="http:/www.domain.com/thanks.php" />
<input type="hidden" name="cancel_return" value="http:/www.domain.com/canceled.php" />
<input type="hidden" name="bn" value="PP-BuyNowBF:btn_paynowCC_LG.gif:NonHosted" /> 
<input type="hidden" name="cbt" value="GO BACK TO XXXXX APP" />
<input type="hidden" name="custom" value="XXXXXXXXXXXXX" />
<input type="image" src="https://www.paypalobjects.com/WEBSCR-640-20110401-1/en_AU/i/btn/btn_paynowCC_LG.gif" border="0" name="submit" style="background-color: #fff;" />
<img alt="" border="0" src="https://www.paypalobjects.com/WEBSCR-640-20110401-1/en_AU/i/scr/pixel.gif" width="1" height="1" />
</form>

1 个答案:

答案 0 :(得分:1)

您确定这是您看到的PayPal帐户登录屏幕吗?如果显示“请登录以使用PayPal沙盒功能”。这意味着您未在https://developer.paypal.com/上以开发人员身份登录 如果您想在任何浏览器中使用沙盒网站,则需要登录https://developer.paypal.com/ - 这当然不是您在实际网站中看到的限制。
无论如何,你的代码对我来说很好。