在使用fancyBox 2.0之前,我是this one的新用户。我最新的我的fancyBox版本的响应功能,但它在我的用例中不起作用...我做了一个Ajax请求,我得到了我希望在我的fancyBox中显示的HTML coda。
这就是我所做的:
$.ajax({
url: myUrl,
type:"post",
data:{
...
},
dataType: "json",
success: function(data) {
if (data.error == 0) {
$.fancybox.open(data.html,
{
type: 'html',
afterLoad : function() {
...
}
});
}
}
});
使用此代码显示的fancyBox没有响应......所以