Paypal Iframe:输入错误时请勿擦除信用卡信息

时间:2018-10-02 02:42:04

标签: paypal paypal-sandbox

现在我正在使用贝宝iframe,如果我输入正确的信用卡信息,它会很好地工作,但是,如果我输入了错误的信息,我只是希望这些信息保持完整,现在当输入的信用卡信息错误时,所有信息都消失了。

这就是我所做的

<iframe name="hss_iframe"id="paypal_iframe"width="570px"height="540px"frameborder="0"></iframe>
<form target="hss_iframe" name="form_iframe"
    method="post"
    action="<?php echo $payment_url ?>">
    <input type="hidden" name="cmd" value="_hosted-payment">
    <input type="hidden" name="subtotal" value="<?php echo $amount; ?>">
    <input type="hidden" name="business" value="<?php echo $business_id ?>">
    <input type="hidden" name="paymentaction" value="sale">
    <input type="hidden" name="template" value="templateD">
    <input type="hidden" name="return"
    value="<?php echo HTTPS_SERVER  ?>index.php?route=payment/pp_iframe/confirm">
    <input type="submit" name="METHOD" value="Pay">
</form>
<script type="text/javascript">
document.form_iframe.submit();
</script>

我可以解决这个问题吗?请帮忙!!!

0 个答案:

没有答案