表单提交前保存数据

发布于 2024-11-26 03:49:43 字数 431 浏览 0 评论 0原文

可能的重复:
如何为在一个提交按钮上禁用 JS 的访问者执行两个 POST 请求?

在一个页面中,我有一个带有“送货信息”的表单,然后是一个 PayPal 按钮。对于运输信息,我还有一个复选框“将其保存到您的个人资料中”。如果选中该复选框以将运输信息保存在数据库中,然后在此之后将表格发送到 PayPal,我需要该信息。

将送货信息发送到 PayPal 也非常有帮助,这样我就可以从 PayPal 取回送货地址(按顺序保存所有这些)

Possible Duplicate:
How to do two POST requests for visitors with JS disabled on one submit button?

In a page I have a form with "Shipping Information" and then a PayPal button. For Shipping Information I have also a checkbox "save this to your profile". I need that if the checkbox is checked to save shipping information in database and just after this to send form to PayPal.

Also would be really helpful to send shipping information to PayPal so I can get back then shipping address from PayPal (to save all this in order)

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

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

发布评论

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

评论(1

吃素的狼 2024-12-03 03:49:43

我希望它对你有帮助。

$('#payment_form).submit(function()
{
    if($('.checkbox',this).is(':checked'))      
    {
        var formData=$(this).serialize();
        $.ajax({
            url: 'your.url.com',
            data: formData,
            type: 'get',
            async: false,
            complete: function()
            {
                alert('Now you will be redirected to PayPal');
            }
       });
    }
    return true;
});

如果此解决方案不适合您,那么您必须将 PayPal Pro 集成到您的网站中

I hope it will be helpfull for you.

$('#payment_form).submit(function()
{
    if($('.checkbox',this).is(':checked'))      
    {
        var formData=$(this).serialize();
        $.ajax({
            url: 'your.url.com',
            data: formData,
            type: 'get',
            async: false,
            complete: function()
            {
                alert('Now you will be redirected to PayPal');
            }
       });
    }
    return true;
});

If this solution doesn't work for you, then you have to integrate PayPal Pro into your website

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