首页javascriptpjQuery HTML Element - 如何显示li项目与下滑...

jQuery HTML Element - 如何显示li项目与下滑...

我们想知道如何显示li项目与下滑。...


<html>
  <head>
    <script type="text/javascript" src='http://code.jquery.com/jquery-1.5.2.js'></script>
    <script type="text/javascript">
        $(document).ready(function(){
             $("p").text("<b>Some</b> new text.");
        });
    </script>
  </head>
  <body>
         <p>asdf</p>
         <p>asdf</p>
         <p>asdf</p>
         <p>asdf</p>
  </body>
</html>