开发者

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

开发者 https://www.devze.com 2022-12-08 13:21 出处:网络
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

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 开发者_JS百科iFrame. Is this possible?

Thanks!


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

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

精彩评论

暂无评论...
验证码 换一张
取 消