我需要给 p[class^="xxx"] 的最后一个元素定义样式,可是写 p[class^="xxx"]:last-of-type 不起作用,请问要怎么写呢?
p[class^="xxx"]
p[class^="xxx"]:last-of-type
光阴似箭催人老,日月如移越少年。
<!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <title></title> </head> <style type="text/css"> .d1{ width: 200px; height: 500px; background-color: #0077B0; } </style> <body> <p class="d1"> <ul> <li class="zz">li-1</li> <li class="zz">li-2</li> <li class="zz">li-3</li> <li class="zz">li-4</li> <li class="zz">li-5</li> </ul> </p> <script src="http://libs.baidu.com/jquery/2.0.0/jquery.min.js"></script> <script type="text/javascript"> $(function() { $(".d1").click(function() { alert( $("li.zz:last").text() ); }) }) </script> </body> </html>
last last-child 都可以
你很可能需要了解last-of-type和last-child的差別
last last-child 都可以
你很可能需要了解last-of-type和last-child的差別