JavaScript选项卡 - 仅在加载所有图像时显示

时间:2014-01-07 18:08:56

标签: javascript image tabs load

-Hello有人可以帮我解决这个问题:

我需要解决这个问题:我有一个JavaScript选项卡,但只有在另一个java脚本(jquery)上的图像完全加载后才能正确显示。

我尝试了文档就绪功能,但没有效果。

 <!-- Tabs -->
<script src="tabs.js"></script>
<script>
  $( document ).ready(function() {
        console.log( "document loaded" );
    });
  $(function() {
    $( "#tabs" ).tabs();
  });
  </script>

1 个答案:

答案 0 :(得分:0)

<div style = "display:none" id = "tabs">

JS

$( "#tabs" ).tabs();

$( document ).ready(function() {
        $( "#tabs" ).show();
});

为什么不隐藏标签,然后在文档准备好后显示它们?