JavaScript DHTML/jQuery/nextAll

Материал из Web эксперт
Перейти к: навигация, поиск

Get next all

    
<html>
  <head>
    <script type="text/javascript" src="js/jquery-1.3.2.js"></script>
    <script type="text/javascript">
        $(document).ready(function(){
             $("button[disabled]").nextAll().text("data");

        });
    </script>
    <style>
      .y { background:yellow; }
  </style>
  </head>
  <body>
    <body>
       <div><button disabled="disabled">First</button> - <span class="selected"></span>
            <span></span>
       </div>
  </body>
</html>



nextAll(expr): Use an optional expression to filter the matched set.

 
<html>
  <head>
    <script type="text/javascript" src="js/jquery-1.3.2.js"></script>
    <script type="text/javascript">
        $(document).ready(function(){
              $("div:first").nextAll().css("color","red");
        });
    </script>
  </head>
  <body>
    <body>
              
          <div>asdf</div>
          <div>asdf</div>
          
    </body>
</html>



Search tags from nextAll()

    
<html>
  <head>
    <script type="text/javascript" src="js/jquery-1.3.2.js"></script>
    <script type="text/javascript">
        $(document).ready(function(){
             $("button[disabled]").nextAll("span").text("data");

        });
    </script>
    <style>
      .y { background:yellow; }
  </style>
  </head>
  <body>
    <body>
       <div><button disabled="disabled">First</button> - <span class="selected"></span>
            <span></span>
       </div>
  </body>
</html>