将内容添加到动态 fancybox
$.post('ajax.php', { callback: 'send_mail', name: $("#name").val() },
function(data){
if(data.request == 'success'){
$.fancybox(data.name);
}else{
alert('error');
}
}, 'json');
这是我在 fancybox 中的 ajax 调用,虽然它确实有效,但它是默认的 fancybox。 原始的花式框有这些选项
$('#login_page').fancybox({
'scrolling' : 'no',
'overlayOpacity': 0.1,
'showCloseButton' : false
});
我的问题是,如何将返回的值放入花式框并设置选项?
编辑:
啊我想通了。有一个内容的高级选项:
$.post('ajax.php', { callback: 'send_mail', name: $("#name").val() },
function(data){
if(data.request == 'success'){
$.fancybox(data.name);
}else{
alert('error');
}
}, 'json');
here is my ajax call in my fancybox and while it does work, it is a default fancybox.
The original fancy box has these options
$('#login_page').fancybox({
'scrolling' : 'no',
'overlayOpacity': 0.1,
'showCloseButton' : false
});
My question is, how do I place my returned value inside the fancy box and set the options?
EDIT:
ah I figured it out. There is an advanced option for content:
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
有一个名为 content 的选项,允许您输入 html。
There is an option called content that allows you to input html.