向 Facebox 提交表格

发布于 2024-07-25 21:32:08 字数 216 浏览 12 评论 0原文

有没有办法向 Facebox 提交表单? 现在,您需要使用锚标记来调用 Facebox 方法,但我需要提交表单并将数据发送到 php 处理程序并在 Facebox 中显示。

因此,如果我在 order.html 上,然后提交“添加到购物车”按钮,并且购物车位于 index.php?action=add (表单操作)上,但某些帖子变量除外。 是否可以显示购物车但不带我到index.php?

Is there a way to submit a form to Facebox? As it is right now you need to use an anchor tag to invoke the facebox method but I need to submit a form and send the data to the php handler and show it in facebox.

So if I'm on order.html and then submit the add to cart button and the cart is on index.php?action=add (form action) which excepts some post variables. Is it possible to show the cart but not take me to index.php?

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

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

发布评论

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

评论(2

空城缀染半城烟沙 2024-08-01 21:32:08

试试这个......

//open script tag

jQuery(document).ready(function($) {
  $('a[rel*=facebox]').facebox()
})

// close script tag


//check if form is submitted

//open script tag

 jQuery.facebox({ ajax: 'filename_to_open_in_fb.php' });

// close script tag

希望这有帮助......

Try this...

//open script tag

jQuery(document).ready(function($) {
  $('a[rel*=facebox]').facebox()
})

// close script tag


//check if form is submitted

//open script tag

 jQuery.facebox({ ajax: 'filename_to_open_in_fb.php' });

// close script tag

hope this was helpful....

栀梦 2024-08-01 21:32:08

这个小教程应该有助于完成您想要做的事情:
http://ronaldarichardson.com/ 2011/03/17/how-to-submit-post-php-data-to-facebox/

这也是其中的代码摘录。

<script type="text/javascript">
function decrypt_form() {       
    $.facebox(function() {
        $.ajax({
            data: { "id" : $("#id").val() },
            error: function() {
                $.facebox("There was an error decrypting the form submission");
            },
            success: function(data) {
                $.facebox(data);
            },
            type: "post",
            url: "decryptAndShow.php?form='.$form.'"
        });     
    });  
}

This little tutorial should help accomplish what you are trying to do:
http://ronaldarichardson.com/2011/03/17/how-to-submit-post-php-data-to-facebox/

Here is the code excerpt from it as well.

<script type="text/javascript">
function decrypt_form() {       
    $.facebox(function() {
        $.ajax({
            data: { "id" : $("#id").val() },
            error: function() {
                $.facebox("There was an error decrypting the form submission");
            },
            success: function(data) {
                $.facebox(data);
            },
            type: "post",
            url: "decryptAndShow.php?form='.$form.'"
        });     
    });  
}

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