jQuery日本語リファレンス

jQuery does not mean Japanese Query...

ヌー

Selectors/API/jQuery - Sample Code

:nth-child(index/even/odd/equation)

 
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" 
 "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
 <script src="/jquery/js/jquery.js"></script>
 
 <script>
 $(document).ready(function(){
 $("ul li:nth-child(2)").css("background-color", "yellow");
 });
 </script>
 <style>
 div { float:left; }
 span { color:blue; }
 </style>
</head>
<body>
 <div><ul>
 <li>John</li>
 <li>Karl</li>
 <li>Brandon</li>
 </ul></div>
 <div><ul>
 <li>Sam</li>
 </ul></div>
 <div><ul>
 <li>Glen</li>
 <li>Tane</li>
 <li>Ralph</li>
 <li>David</li>
 </ul></div>
</body>
</html>
 
 
[実行結果] [フレーム]
[:nth-child(index/even/odd/equation) の説明へ]
© Copyright 2009 by semooh.jp | Design by Free CSS Templates - Thanks to Dubai Apartments

AltStyle によって変換されたページ (->オリジナル) /