首页javascriptshowjQuery Method - 如何使用show(time)在动画中显示标签

jQuery Method - 如何使用show(time)在动画中显示标签

我们想知道如何使用show(time)在动画中显示标签。

<html>
  <head>
    <script type="text/javascript" src='http://code.jquery.com/jquery-1.5.2.js'></script>
    <script type="text/javascript">
        $(document).ready(function(){
           $("div:hidden").show(3000);
        });
    </script>
  </head>
  <body>
      <span></span>
      <div style="display:none;">Hider!</div>
      <div></div>
    </body>
</html>