runoops.com

jQuery 遍历 方法 第2页

jQuery nextUntil() 方法

阅读(468)

实例 Run this code » 返回在类名为 "start" 和 "stop" 的两个 <li> 元素之间的所有同级元素: $(document).ready(function(){ $("li.start").nextU...

jQuery nextAll() 方法

阅读(478)

实例 Run this code » 返回带有类名 "start" 的每个 <li> 元素之后的所有同级元素: $(document).ready(function(){ $("li.start").nextAll().css(...

jQuery next() 方法

阅读(536)

实例 Run this code » 返回带有类名 "start" 的每个 <li> 元素的后一个同级元素: $(document).ready(function(){ $("li.start").next().css({"co...

jQuery last() 方法

阅读(460)

实例 Run this code » 选取最后一个 <div> 元素内的最后一个 <p> 元素: $("p").last() 定义和用法 last() 方法返回被选元素的最后一个元素。 提示:如需返回第一个元素,请使...

jQuery is() 方法

阅读(459)

实例 Run this code » 如果 <p> 的父元素是 <div> 元素,弹出提示信息: if ($("p").parent().is("div")) {    alert("p 的父元素是 div"); }...

jQuery has() 方法

阅读(495)

实例 Run this code » 返回拥有一个 <span> 元素在其内的所有 <p> 元素: $("p").has("span")   定义和用法 has() 方法返回拥有匹配指定选择器的一个或多个元...

jQuery first() 方法

阅读(527)

实例 Run this code » 选取第一个 <div> 元素内的第一个 <p> 元素: $("div p").first()   定义和用法 first() 方法返回被选元素的第一个元素。 提示:如需...

jQuery find() 方法

阅读(604)

实例 Run this code » 返回 <ul> 后代中所有的 <span> 元素: $(document).ready(function(){ $("ul").find("span").css({"color"...

jQuery filter() 方法

阅读(523)

实例 Run this code » 返回带有类名 "intro" 的所有 <p> 元素: $("p").filter(".intro")   定义和用法 filter() 方法返回符合一定条件的元素。 该方法让您规定...

jQuery eq() 方法

阅读(512)

实例 Run this code » 选取第二个 <p> 元素(索引号为 1): $("p").eq(1).css("background-color","yellow"); 定义和用法 eq() 方法返回带有被选元素的指定索引...