我想在单击预览按钮时显示表单的预览,所以我只是在这里触发ajax调用(带有post请求)以显示fancybox中的数据。这是我的代码
$('#preview').click(function(e) {
e.preventDefault();
$.fancybox.showLoading();
$.post($(this).attr('href'), $('form').serialize(), function(res) {
$.fancybox(res, {
beforeShow : function() {
// do some thing
}
});
});
})
它工作正常,但需要在 iframe 类型的fancybox中显示ajax响应,以便以适当的设计显示它。
提前致谢。