我目前让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();
仍然给我正确的信息。
任何帮助将不胜感激!