Jquery 过滤器(first,last,not,even,odd)的使用_jquery
程序员文章站
2022-04-24 09:32:09
...
复制代码 代码如下:
$(function(){
$("#menu li:first").click(function(){
$(this).addClass("b");
});
$("#menu li:last").text("最后");//id为menu的li列表中最后一个li元素插入文字“最后”
$("#menu li:first").text("第一");//li列表中第一个li元素插入文字“第一”
$("#menu li:not(.on)").text("on");//li列表中样式不是class="on"的li元素插入文字“on”
$("#menu li:even").text("奇数行");
$("#menu li:odd").text("偶数行");
});
推荐阅读
-
Jquery 过滤器(first,last,not,even,odd)的使用
-
jQuery遍历 - 过滤first(),last()和eq()使用
-
jQuery中内容过滤器的使用方法
-
jQuery :first选择器,:first-child选择器以及first()的使用区别
-
Jquery 过滤器(first,last,not,even,odd)的使用_jquery
-
jQuery选择器:last-child的使用详解
-
jQuery的可见性过滤器使用
-
jQuery :first-child选择器使用出现的问题
-
jquery选择器:first-child和:last-child的用法实例总结
-
jQuery选择器:last-child的使用详解