Fancybox中的jQuery不能正常工作html()和hide()

时间:2012-07-07 05:03:01

标签: javascript jquery fancybox fancybox-2

我目前让Fancybox打开一个hidden_​​div afterShow()

hidden_​​div上有一个调用此函数的链接:

        $('#image_tagged').html('');       // these work
        $('#image_name_tagged').hide();    // these work
        $('#image_tagged_fancybox').live("remove icons", function(){  // this does not work
            $(this).html('');
        });
        $('#image_tagged_fancybox_name').hide();  // this does not work
    }
});

带有#image_tagged#image_name_tagged work的jQuery - 这些ID不在fancybox-overlay(调用fancybox之后的隐藏选项卡)之上。

带有#image_tagged_fancybox的jQuery(从隐藏选项卡中的链接调用的jQuery)不起作用。有趣的是...

$('#image_tagged_fancybox_name').html();

仍然给我正确的信息。

任何帮助将不胜感激!

0 个答案:

没有答案