我目前有 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
}
});
jQuery#image_tagged
和#image_name_tagged work
-- 这些 ID 不在 fancybox-overlay 之上(调用 fancybox 之后的隐藏选项卡)。
带有#image_tagged_fancybox
(从隐藏选项卡中的链接调用的 jQuery)的 jQuery 不起作用。有趣的是...
$('#image_tagged_fancybox_name').html();
仍然给我正确的信息。
任何帮助,将不胜感激!