课程
/前端开发
/jQuery
/jQuery基础 (一)—样式篇
$("dd:contains('第一类') a:nth-child(9)").css('color','#66CD00');这个为什么会选中第八个??
2016-12-22
源自:jQuery基础 (一)—样式篇 2-16
正在回答
nth-child(9)在这里代表dd的第九个儿子,而不是说dd中第九个a标,如果dd的第九个儿子不是a标的话,样式是不会改变的.
对啊 我也想知道这个问题
举报
jQuery初入开启样式修炼,体验万能的jQuery样式集搭建网站布局
1 回答$('.last-div a:nth-child(2)').css("color", "#CD00CD");
3 回答为什么这里的a:nth-child(10)是10,而不是9?
5 回答写的nth-child(9),但是第八个a标签变了颜色
2 回答选择器里用first-child不能选中第一个“更多” 但是last-child却可以选中最后一个
6 回答查找class="first-div"下的第一个a元素 为什么是$(".first-div a:first-child").css("color", "#CD00CD"); 为什么是$(".first-div:first-child").css("color", "#CD00CD");他的第一个子元素就是a元素啊