<!DOCTYPE html> <html> <head> <title>:last-child子元素过滤选择器</title> <script src="http://libs.baidu.com/jquery/1.9.0/jquery.js" type="text/javascript"></script> <link href="style.css" rel="stylesheet" type="text/css" /> </head> <body> <h3>改变每个"蔬菜水果"中最后一行的背景色</h3> <ol> <li>芹菜</li> <li>茄子</li> <li>萝卜</li> <li>大白菜</li> <li>西红柿</li> </ol> <ol> <li>橘子</li> <li>香蕉</li> <li>葡萄</li> <li>苹果</li> <li>西瓜</li> </ol> <ol> <li>橘子</li> <li>香蕉</li> <li>葡萄</li> <li>苹果</li> <li>西瓜</li> <h6>最后一个</h6> </ol> <script type="text/javascript"> // $("li:last-child").css("background-color", "blue"); $("ol :last-child").css("background-color", "blue"); </script> </body> </html>
当然,如果$("ol :last-child")里面指定li或者h6除外。
淡雅的默
qq_袁佳清_0
qq_袁佳清_0
相关分类