我试图在一段时间后隐藏一个div,一旦它被加载并且它在我在控制台中执行时它的工作但是当我把这个代码放在实际的网页中时它不起作用。
(function ($) {
if ($('#insightera_widget_content').length) {
$('#insightera_widget_content').delay(10000).fadeOut('slow');
}
}(jQuery));
当我查看源代码时,无法看到div insightera_widget_content ,但我可以在Inspector上看到它。它从一些外部小部件加载。
<script>
$(document).ready(function() {
if ($('#insightera_widget_content').length) {
$('#insightera_widget_content').delay(10000).fadeOut('slow');}
});
</script>
有什么建议吗?