jQuery find() 方法
实例 Run this code » 返回 <ul> 后代中所有的 <span> 元素: $(document).ready(function(){ $("ul").find("span").css({"color"...
实例 Run this code » 返回 <ul> 后代中所有的 <span> 元素: $(document).ready(function(){ $("ul").find("span").css({"color"...
实例 Run this code » 返回带有类名 "intro" 的所有 <p> 元素: $("p").filter(".intro") 定义和用法 filter() 方法返回符合一定条件的元素。 该方法让您规定...
实例 Run this code » 选取第二个 <p> 元素(索引号为 1): $("p").eq(1).css("background-color","yellow"); 定义和用法 eq() 方法返回带有被选元素的指定索引...
实例 Run this code » 输出每个 <li> 元素的文本: $("button").click(function(){ $("li").each(function(){ alert($(this).text()) }...
实例 Run this code » 查找 <div> 元素内所有的文本节点,并把它们用 <b> 元素包裹起来: $("div").contents().filter("em").wrap(""); 定义和用法 co...
实例 Run this code » 返回 <span> 的第一个祖先元素,是一个 <ul> 元素: $(document).ready(function(){ $("span").closest("ul").css...
实例 Run this code » 返回 <ul> 的直接子元素: $(document).ready(function(){ $("ul").children().css({"color":"red","border":"2...
实例 Run this code » 把 <p> 和 <span> 元素添加到已存在的元素组合中(<h1>): $("h1").add("p").add("span") 定义和用法 add() 方法把元素...
jQuery 遍历方法 方法 描述 add() 把元素添加到匹配元素的集合中 addBack() 把之前的元素集添加到当前集合中 andSelf() 在版本 1.8 中被废弃。addBack() 的别名 children() 返回被选元素的...
实例 Run this code » 定义一个新的css hook $(function ($) { //首先检查jquery版本是否支持 cssHooks if (!$.cssHooks){ //如果不支持输出错误提醒 throw(new...