jQuery子元素过滤选择器

jQuery子元素过滤选择器
  1. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">  
  2. <html xmlns="http://www.w3.org/1999/xhtml">  
  3. <head>  
  4.     <title>使用jQuery子元素过滤选择器</title>  
  5.     <script language="javascript" type="text/javascript"   
  6.             src="../Jscript/jquery-1.5.2.js"></script>  
  7.     <style type="text/css">  
  8.            body{font-size:12px;text-align:center}  
  9.            ul{width:241px;list-style-type:none;padding:0px}  
  10.            ul li{height:23px;width:60px;line-height:23px;float:left;  
  11.            border-top:solid 1px #eee;border-bottom:solid 1px #eee;margin-bottom:5px}  
  12.            .GetFocus{width:58px;border:solid 1px #666;background-color:#eee}  
  13.     </style>  
  14.     <script type="text/javascript">  
  15.           /*  $(function(){ //增加每个父元素下的第2个子元素类别  
  16.               $("li:nth-child(2)").addClass("GetFocus");  
  17.             })*/  
  18.          /*  $(function(){ //增加每个父元素下的第一个子元素类别  
  19.               $("li:first-child").addClass("GetFocus");  
  20.             })*/  
  21.           /*   $(function(){ //增加每个父元素下的最后一个子元素类别  
  22.               $("li:last-child").addClass("GetFocus");  
  23.             })*/  
  24.             $(function(){ //增加每个父元素下只有一个子元素类别  
  25.               $("li:only-child").addClass("GetFocus");  
  26.             })  
  27.     </script>  
  28. </head>  
  29. <body>  
  30.      <ul>  
  31.         <li>Item 1-0</li>  
  32.         <li>Item 1-1</li>  
  33.         <li>Item 1-2</li>  
  34.         <li>Item 1-3</li>  
  35.      </ul>  
  36.      <ul>  
  37.         <li>Item 2-0</li>  
  38.         <li>Item 2-1</li>  
  39.         <li>Item 2-2</li>  
  40.         <li>Item 2-3</li>  
  41.      </ul>  
  42.      <ul>  
  43.         <li>Item 3-0</li>  
  44.      </ul>  
  45. </body>  
  46. </html>  

相关推荐