在 Fancybox 内使用 POST 值打开外部链接 (HTTPS)?

发布于 2024-10-15 07:11:01 字数 850 浏览 1 评论 0原文

有没有办法打开外部 https url,在帖子提交时触发并在 Fancybox 弹出窗口或类似窗口中使用帖子数据?

例如,我正在谈论 Paypal 付款。单击“立即购买”按钮,PayPal 网站将在 Fancybox 内打开,并且将使用 Ajax 解析数据。 这会改善用户体验,恕我直言...

我尝试了这个解决方案,在另一个线程中找到,但它不起作用...

$("#payment_form").bind("submit", function() {

$.ajax({
    type        : "POST",
    cache       : false,
    url         : "https://www.paypal.com/XXX/XXX",
    data        : $(this).serializeArray(),
    success: function(data) {
        $.fancybox(data);
    }
});

return false;

});

 <form id="payment_form"action="https://www.paypal.com/XXX/XXX" method="post">
 <input type="hidden" name="yyy" value="xxxx">
 <input type="hidden" name="yyy" value="xxxxxxxx">
 <input class="gift-card" type="image" src="button.jpg" name="submit" alt="">     
 </form>

Is there a way to open external https urls, triggered on post submit and with post data inside Fancybox popups or similar?

I am talking about Paypal payments, for example. Clicking the "Buy Now" button, the PayPal website would open inside Fancybox and the data would be parsed using Ajax.
This would improve the user experience, IMHO...

I tried this solution, found in another thread but it does not work...

$("#payment_form").bind("submit", function() {

$.ajax({
    type        : "POST",
    cache       : false,
    url         : "https://www.paypal.com/XXX/XXX",
    data        : $(this).serializeArray(),
    success: function(data) {
        $.fancybox(data);
    }
});

return false;

});

 <form id="payment_form"action="https://www.paypal.com/XXX/XXX" method="post">
 <input type="hidden" name="yyy" value="xxxx">
 <input type="hidden" name="yyy" value="xxxxxxxx">
 <input class="gift-card" type="image" src="button.jpg" name="submit" alt="">     
 </form>

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

可可 2024-10-22 07:11:01

PayPal 正在积极执行 X-FRAME-OPTIONS:DENY 响应标头,因此我怀疑这是否有效。
请注意,我还没有对其进行测试,但 PayPal 积极阻止任何人以任何方式、形状或形式“嵌入”其网站,因此即使它今天有效,您也不能保证它明天也能有效。

PayPal is actively enforcing the X-FRAME-OPTIONS:DENY response header, so I doubt this would work.
Note that I haven't tested it yet though, but PayPal actively discourages anyone from 'embedding' their site in any way, shape or form, so even if it works today, you can't guarantee it'll work tomorrow.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文