当用户单击按钮时,链接应该在框内打开,Iframe显示空白

Iframe is showing up blank when link should open inside box when user clicks button

本文关键字:空白 显示 Iframe 单击 用户 按钮 链接      更新时间:2023-09-26

我试图打开一个链接在iframe后,你选择了一个单选按钮,但它显示空白。

<form target="myIframe" style="display:inline;" name="cashDonation" id="cashDonation" action="https://www.paypal-donations.com/pp-charity/PayPalDonationController" method="POST" onsubmit=return submitDonation();>
<iframe name='myIframe' src="" width="1000" height="1000"></iframe>

完整代码:

http://jsfiddle.net/nsilverblatt/cn57sx6s/

由于跨域,您无法将PayPal加载到iframe中。这是出于安全考虑。

见:https://stackoverflow.com/a/7271913/484780