如果不知道点击的ID,Fancybox

时间:2012-02-23 00:11:55

标签: jquery ajax fancybox

在Stackoverflow上搜索我尝试了许多没有结果的解决方案。

问题是: 我通过带有各种链接的ajax得到一个div,我想在每个点击的链接上加载fancybox。

最后一件事:

$("table.grayCentralBoxContents td.smallText a").each(function() {
$(this).fancybox({
       'width'  : '75%',
    'height'            : '90%',
        'autoScale'         : false,
        'transitionIn'      : 'none',
    'transitionOut'     : 'none',
    'type'              : 'iframe'
});
});

在firebug控制台上测试,这个选择器($(“table.grayCentralBoxContents td.smallText a”))效果很好。 我无法弄清楚如何解决这个问题。

帮助。

0 个答案:

没有答案