是否可以提交表单以使目标(对于返回的数据)是Fancybox Jquery Lightbox?
由于 保罗
答案 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
});
});