JavaScript Tutorial/jQuery/andSelf

Материал из Web эксперт
Версия от 11:25, 26 мая 2010; Admin (обсуждение | вклад) (1 версия)
(разн.) ← Предыдущая | Текущая версия (разн.) | Следующая → (разн.)
Перейти к: навигация, поиск

Add the previous selection to the current selection

   <source lang="javascript">

<html>

 <head>
   <script type="text/javascript" src="js/jquery-1.3.2.js"></script>
   <script type="text/javascript">
       $(document).ready(function(){
            $("div").andSelf().css("background", "yellow");
       });
   </script>
 </head>
 <body>
   <body>
asdf
asdf
asdf
asdf
asdf
 </body>

</html></source>


andSelf(): traversing elements

   <source lang="javascript">

<html>

 <head>
   <script type="text/javascript" src="js/jquery-1.3.2.js"></script>
   <script type="text/javascript">
       $(document).ready(function(){
           
              $("div").find("p").andSelf().css("color","red");
               
        
       });
   </script>
   <style>
     .selected { color:blue; }
     
   </style>
   
 </head>
 <body>
   <body>

First Paragraph

Second Paragraph

   </body>

</html></source>