首页javascriptcssjQuery Method - 如何使用hide()...

jQuery Method - 如何使用hide()...

我们想知道如何使用hide()。...


<html>
  <head>
    <script type="text/javascript" src='http://code.jquery.com/jquery-1.5.2.js'></script>
    <script type="text/javascript">
      $(document).ready(function(){
          $("td:gt(1)").css("color", "red");
      });
    </script>
  </head>
  <body>
       <table border="1">
        <tr><td>Row</td></tr>
        <tr><td>Row</td></tr>
        <tr><td>Row</td></tr>
        <tr><td>Row</td></tr>
      </table>
  </body>
</html>