JavaScript Tutorial/jQuery/split

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

30. Split text from paragraph

   <source lang="javascript">

<html>

 <head>
   <script type="text/javascript" src="js/jquery-1.3.2.js"></script>
   <script type="text/javascript">
       $(document).ready(function(){
var newText = $("p").text().split(" ").join("</div>
");
           $("p").html(newText).find("div").hover(
                  function () { $(this).addClass("y"); },
                  function () { $(this).removeClass("y"); });
       });
   </script>
   <style>
     .y { background:yellow; }
 </style>
 </head>
 <body>
   <body>

a ab abc

 </body>

</html></source>


30. Split text from tag

   <source lang="javascript">

<html>

 <head>
   <script type="text/javascript" src="js/jquery-1.3.2.js"></script>
   <script type="text/javascript">
       $(document).ready(function(){
             var words = $("b:first").text().split(" ");
             alert(words);
       });
   </script>
 </head>
 <body>
   <body>
     
      Hello asdf asdf
   </body>
</html></source>