我正在使用fancybox
2.x 来显示数据,我已经将一些数据加载ajax
到 div 中,现在来自 ajax 调用的数据是这样的
<a href="sample.php" class="fancy" >sample</a>
在头上我有花式框代码
$(document).ready(function() {
$(".fancy").fancybox({
'transitionIn' : 'fadein',
'transitionOut' : 'fadeout',
'speedIn' : 600,
'speedOut' : 200,
'width' : 260,
'height' : 260,
'overlayShow' : false,
'type' : 'iframe'
});
});
但这不起作用,如果我写
<a href="sample.php" class="fancy" >sample</a>
文档中的相同代码,它可以工作,请告诉我如何通过...等待解决方案来使用fancybox
动态加载的数据。ajax