我正在使用Paypal Pros iframe实现,一切正常......
<iframe name="hss_iframe" width="570px" height="540px"></iframe>
<form style="display:none;" target="hss_iframe" name="form_iframe" method="post" action="https://securepayments.paypal.com/cgi-bin/acquiringweb?cmd=_hosted-payment">
<input type="hidden" name="cmd" value="_hosted-payment">
<input type="hidden" name="subtotal" value="50.00">
<input type="hidden" name="quantity" value="1">
<input type="hidden" name="business" value="KASDFS323234">
<input type="hidden" name="paymentaction" value="sale">
<input type="text" name="custom" value="<?php echo $_REQUEST['email_address']; ?>">
<input type="hidden" name="template" value="templateD">
<input type="hidden" name="notify_url" value="http://www.mydomain.com/notify.php" />
<input type="hidden" name="return" value="http://www.mydomain.com/thankyou">
</form>
我的问题是www.mydomain.com/thankyou的返回网址是在iframe内部打开,而不是用该网页重新加载浏览器。
有没有人遇到过类似的问题?