PHP + POST an HTML form from inside an iFrame and redirect parent

主宰稳场 提交于 2019-12-19 08:59:24

问题


I'm wondering if it's possible to do the following: have an iFrame inside of an HTML page. Inside the iFrame, I have a 'Pay with PayPal' button. When that button is clicked, and thus the HTML form is submitted to PayPal, I want the parent page to redirect to PayPal, rather than just the iFrame. Is this possible?

Thanks!


回答1:


I think you're looking for target="_top"

<form action".." target="_top">
</form>


来源:https://stackoverflow.com/questions/1535026/php-post-an-html-form-from-inside-an-iframe-and-redirect-parent

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!