用:gt(0)可以忽略第一个元素,从第二个元素开始遍历,例如下面的代码$("div:gt(0)").css({"border":"1px solid blue", "margin":"10px"});其中:gt(index)表示大于index的元素,其中index是基于0的索引。用each遍历,代码如下:$("div:gt(0)").each(function(i,v){$(this).css({"background-color":"pink", "margin":"10px"});});
$("#元素id").find("li:gt(48)").each(function (){ //具体代码}) 给find函数的参数为:‘li:gt(48)’;表示从下标大于48,也就是下标为49开始遍历。(因为下标是从0开始,49代表第50个)
Jquery是一个快速、简洁的JavaScript框架,jQuery设计宗旨是:Write Less,Do More(写更少的代码,做更多的事情)。