提交表单 - 结果出现在fancybox中?

时间:2011-07-26 15:00:17

标签: jquery fancybox

是否可以提交表单以使目标(对于返回的数据)是Fancybox Jquery Lightbox?

由于 保罗

1 个答案:

答案 0 :(得分:1)

在后端脚本中使用AJAX帖子并将返回的数据推送到灯箱。

$('#form_id').submit(function(e)){
    //stop the form from submitting
    e.preventDefault();

    //send the form data to the backend script
    $.post('backend_script.php',$(this).serialize(),function(msg){
        //alert(msg)
        //add content to lightbox here
    });
});