jQuery parent() 方法
实例 Run this code » 返回 <span> 的直接父元素: $(document).ready(function(){ $("span").parent().css({"color":"red","border":...
实例 Run this code » 返回 <span> 的直接父元素: $(document).ready(function(){ $("span").parent().css({"color":"red","border":...
实例 Run this code » 设置 <p> 元素的最近的被定位的父元素的背景颜色: $("button").click(function(){ $("p").offsetParent().css("background-...
实例 Run this code » 返回不带有类名 "intro" 的所有 <p> 元素: $("p").not(".intro") 定义和用法 not() 方法返回不符合一定条件的元素。 该方法让您规定一个条件...
实例 Run this code » 返回在类名为 "start" 和 "stop" 的两个 <li> 元素之间的所有同级元素: $(document).ready(function(){ $("li.start").nextU...
实例 Run this code » 返回带有类名 "start" 的每个 <li> 元素之后的所有同级元素: $(document).ready(function(){ $("li.start").nextAll().css(...
实例 Run this code » 返回带有类名 "start" 的每个 <li> 元素的后一个同级元素: $(document).ready(function(){ $("li.start").next().css({"co...
实例 Run this code » 选取最后一个 <div> 元素内的最后一个 <p> 元素: $("p").last() 定义和用法 last() 方法返回被选元素的最后一个元素。 提示:如需返回第一个元素,请使...
实例 Run this code » 如果 <p> 的父元素是 <div> 元素,弹出提示信息: if ($("p").parent().is("div")) { alert("p 的父元素是 div"); }...
实例 Run this code » 返回拥有一个 <span> 元素在其内的所有 <p> 元素: $("p").has("span") 定义和用法 has() 方法返回拥有匹配指定选择器的一个或多个元...
实例 Run this code » 选取第一个 <div> 元素内的第一个 <p> 元素: $("div p").first() 定义和用法 first() 方法返回被选元素的第一个元素。 提示:如需...