jQuery :first-child选择器使用出现的问题
程序员文章站
2022-05-11 10:24:46
...
jQuery中:first-child的使用问题
<ul> <li>Test1<li> <li>aaaaa<li> <li>bbbbb<li> </ul> <ul> <li>Test2<li> <li>ccccc<li> <li>ddddd<li> </ul>
用first-child可以取出每一个<ul>之中的<li>元素,用first就不行。明白?
在jQuery的子元素过滤选择器中,:first-child的使用需要注意一点,文档中说的例子是这样用的:
$("ul li:first-child").addClass("highlight");
它实现的作用是获取到所有ul下面的第一个li元素,与:first有区别。
$("ul li:first").addClass("highlight");
:first只获取一个ul中的第一个li,前提都是页面中有2个ul列表。
对于:
$("ul li:first-child").addClass("highlight");
可以使用另一种写法,效果一样,当然我觉得后者更好理解一些,因为是选择ul下的第一个子元素:
$("ul :first-child").addClass("highlight");
以上例子中的空格都需要注意。
$(function(){ //$("ul li:first-child").addClass("highlight"); //$("ul :first-child").addClass("highlight"); //和上面效果一样 注意空格 $("ul :nth-child(2n)").addClass("highlight"); //$(".one .mini:nth-child(2)").addClass("highlight"); //和下面一样效果 //$(".one :nth-child(2)").addClass("highlight"); //$(".one .mini:last-child").addClass("highlight"); //和下面一样效果 $(".one :last-child)").addClass("highlight"); });
以上就是jQuery :first-child选择器使用出现的问题的详细内容,更多请关注其它相关文章!