本篇博客我将带大家来学习一下jquery的第一个比较重要的知识点,这个知识点对学习jquery的同学来说是必须掌握的,因为他是所有操作的基础,这个知识点就是jquery的对象选择器,我们利用jquery的操作都是基于对象上的,我们只有正确的选择好了我们要操作的对象,我们才能进行我们下一步的操作。jQuery的选择器是什么方便的,我们几乎可以利用它获取页面上任意的一个或一组对象, 可以明显减轻开发人员的工作量。
什么是jquery选择器
在Dom编程中我们只能使用有限的函数根据id或者TagName获取Dom对象. 在jQuery中则完全不同,jQuery提供了异常强大的选择器用来帮助我们获取页面上的对象, 并且将对象以jQuery包装集的形式返回.
首先来看看什么是选择器:
//根据ID获取jQuery包装集
var Object = $("#testDiv");
上例中使用了ID选择器, 选取id为testDiv的Dom对象并将它放入jQuery包装集, 最后以jQuery包装集的形式返回。 "$"符号在jQuery中代表对jQuery对象的引用, "jQuery"是核心对象, 其中包含下列方法:
Returns: jQuery
这个函数接收一个CSS选择器的字符串,然后用这个字符串去匹配一组元素。
This function accepts a string containing a CSS selector which is then used to match a set of elements.
根据HTML原始字符串动态创建Dom元素.
Create DOM elements on-the-fly from the provided String of raw HTML.
将一个或多个Dom对象封装jQuery函数功能(即封装为jQuery包装集)
Wrap jQuery functionality around a single or multiple DOM Element(s).
$(document).ready()的简写方式
上面摘选自jQuery官方手册.Returns的类型为jQuery即表示返回的是jQuery包装集.
根据选择器选取匹配的对象, 以jQuery包装集的形式返回. context可以是Dom对象集合或jQuery包装集, 传入则表示要从context中选择匹配的对象, 不传入则表示范围为文档对象(即页面全部对象).
上面这个方法就是我们选择器使用的核心方法.可以用"$"代替jQuery让语法更简介, 比如下面两句话的效果相同:
var jQueryObject = $("#testDiv");
//$是jQuery对象的引用:
var jQueryObject = jQuery("#testDiv");
接下来让我们系统的学习jQuery选择器.
1. 基础选择器 Basics
名称
说明
举例
<a href="http://blog.csdn.net/csh624366188/article/details/7672632#id">#id</a>
根据元素Id选择
$("#divId") 选择ID为divId的元素
<a href="http://blog.csdn.net/csh624366188/article/details/7672632#element">element</a>
根据元素的名称选择,
$("a") 选择所有<a>元素
<a href="http://blog.csdn.net/csh624366188/article/details/7672632#class">.class</a>
根据元素的css类选择
$(".bgRed") 选择所用CSS类为bgRed的元素
<a href="http://docs.jquery.com/Selectors/all">*</a>
选择所有元素
$("*")选择页面所有元素
<a href="http://blog.csdn.net/csh624366188/article/details/7672632#selector1selector2selectorN">selector1, selector2, selectorN</a>
可以将几个选择器用","分隔开然后再拼成一个选择器字符串.会同时选中这几个选择器匹配的内容.
$("#divId, a, .bgRed")
2.层次选择器 Hierarchy
<a href="http://blog.csdn.net/csh624366188/article/details/7672632#ancestordescendant">ancestor descendant</a>
使用"form input"的形式选中form中的所有input元素.即ancestor(祖先)为from, descendant(子孙)为input.
$(".bgRed div") 选择CSS类为bgRed的元素中的所有<div>元素.
<a href="http://blog.csdn.net/csh624366188/article/details/7672632#parentchild">parent > child</a>
选择parent的直接子节点child. child必须包含在parent中并且父类是parent元素.
$(".myList>li") 选择CSS类为myList元素中的直接子节点<li>对象.
<a href="http://blog.csdn.net/csh624366188/article/details/7672632#prevnext">prev + next</a>
prev和next是两个同级别的元素. 选中在prev元素后面的next元素.
$("#hibiscus+img")选在id为hibiscus元素后面的img对象.
<a href="http://blog.csdn.net/csh624366188/article/details/7672632#prevsiblings">prev ~ siblings</a>
选择prev后面的根据siblings过滤的元素
注:siblings是过滤器
$("#someDiv~[title]")选择id为someDiv的对象后面所有带有title属性的元素
3.基本过滤器 Basic Filters
<a href="http://docs.jquery.com/Selectors/first">:first</a>
匹配找到的第一个元素
查找表格的第一行:$("tr:first")
<a href="http://docs.jquery.com/Selectors/last">:last</a>
匹配找到的最后一个元素
查找表格的最后一行:$("tr:last")
<a href="http://blog.csdn.net/csh624366188/article/details/7672632#selector">:not(selector)</a>
去除所有与给定选择器匹配的元素
查找所有未选中的 input 元素: $("input:not(:checked)")
<a href="http://docs.jquery.com/Selectors/even">:even</a>
匹配所有索引值为偶数的元素,从 0 开始计数
查找表格的1、3、5...行:$("tr:even")
<a href="http://docs.jquery.com/Selectors/odd">:odd</a>
匹配所有索引值为奇数的元素,从 0 开始计数
查找表格的2、4、6行:$("tr:odd")
<a href="http://blog.csdn.net/csh624366188/article/details/7672632#index">:eq(index)</a>
匹配一个给定索引值的元素
注:index从 0 开始计数
查找第二行:$("tr:eq(1)")
<a href="http://blog.csdn.net/csh624366188/article/details/7672632#index">:gt(index)</a>
匹配所有大于给定索引值的元素
查找第二第三行,即索引值是1和2,也就是比0大:$("tr:gt(0)")
<a href="http://blog.csdn.net/csh624366188/article/details/7672632#index">:lt(index)</a>
选择结果集中索引小于 N 的 elements
查找第一第二行,即索引值是0和1,也就是比2小:$("tr:lt(2)")
<a href="http://docs.jquery.com/Selectors/header">:header</a>
选择所有h1,h2,h3一类的header标签.
给页面内所有标题加上背景色: $(":header").css("background", "#EEE");
<a href="http://docs.jquery.com/Selectors/animated">:animated</a>
匹配所有正在执行动画效果的元素
只有对不在执行动画效果的元素执行一个动画特效:
$("#run").click(function(){
$("div:not(:animated)").animate({ left: "+=20" }, 1000);
});
4. 内容过滤器 Content Filters
<a href="http://blog.csdn.net/csh624366188/article/details/7672632#text">:contains(text)</a>
匹配包含给定文本的元素
查找所有包含 "John" 的 div 元素:$("div:contains('John')")
<a href="http://docs.jquery.com/Selectors/empty">:empty</a>
匹配所有不包含子元素或者文本的空元素
查找所有不包含子元素或者文本的空元素:$("td:empty")
<a href="http://blog.csdn.net/csh624366188/article/details/7672632#selector">:has(selector)</a>
匹配含有选择器所匹配的元素的元素
给所有包含 p 元素的 div 元素添加一个 text 类: $("div:has(p)").addClass("test");
<a href="http://docs.jquery.com/Selectors/parent">:parent</a>
匹配含有子元素或者文本的元素
查找所有含有子元素或者文本的 td 元素:$("td:parent")
5.可见性过滤器 Visibility Filters
<a href="http://docs.jquery.com/Selectors/hidden">:hidden</a>
匹配所有的不可见元素
注:在1.3.2版本中, hidden匹配自身或者父类在文档中不占用空间的元素.如果使用CSS visibility属性让其不显示但是占位,则不输入hidden.
查找所有不可见的 tr 元素:$("tr:hidden")
<a href="http://docs.jquery.com/Selectors/visible">:visible</a>
匹配所有的可见元素
查找所有可见的 tr 元素:$("tr:visible")
6.属性过滤器 Attribute Filters
<a href="http://blog.csdn.net/csh624366188/article/details/7672632#attribute">[attribute]</a>
匹配包含给定属性的元素
查找所有含有 id 属性的 div 元素:
$("div[id]")
<a href="http://blog.csdn.net/csh624366188/article/details/7672632#attributevalue">[attribute=value]</a>
匹配给定的属性是某个特定值的元素
查找所有 name 属性是 newsletter 的 input 元素:
$("input[name='newsletter']").attr("checked", true);
<a href="http://blog.csdn.net/csh624366188/article/details/7672632#attributevalue">[attribute!=value]</a>
匹配给定的属性是不包含某个特定值的元素
查找所有 name 属性不是 newsletter 的 input 元素:
$("input[name!='newsletter']").attr("checked", true);
<a href="http://blog.csdn.net/csh624366188/article/details/7672632#attributevalue">[attribute^=value]</a>
匹配给定的属性是以某些值开始的元素
$("input[name^='news']")
<a href="http://blog.csdn.net/csh624366188/article/details/7672632#attributevalue">[attribute$=value]</a>
匹配给定的属性是以某些值结尾的元素
查找所有 name 以 'letter' 结尾的 input 元素:
$("input[name$='letter']")
<a href="http://blog.csdn.net/csh624366188/article/details/7672632#attributevalue">[attribute*=value]</a>
匹配给定的属性是以包含某些值的元素
查找所有 name 包含 'man' 的 input 元素:
$("input[name*='man']")
复合属性选择器,需要同时满足多个条件时使用。
找到所有含有 id 属性,并且它的 name 属性是以 man 结尾的:
$("input[id][name$='man']")
7.子元素过滤器 Child Filters
匹配其父元素下的第N个子或奇偶元素
':eq(index)' 只匹配一个元素,而这个将为每一个父元素匹配子元素。:nth-child从1开始的,而:eq()是从0算起的!
可以使用:
nth-child(even)
:nth-child(odd)
:nth-child(3n)
:nth-child(2)
:nth-child(3n+1)
:nth-child(3n+2)
在每个 ul 查找第 2 个li:
$("ul li:nth-child(2)")
<a href="http://docs.jquery.com/Selectors/firstChild">:first-child</a>
匹配第一个子元素
':first' 只匹配一个元素,而此选择符将为每个父元素匹配一个子元素
在每个 ul 中查找第一个 li:
$("ul li:first-child")
<a href="http://docs.jquery.com/Selectors/lastChild">:last-child</a>
匹配最后一个子元素
':last'只匹配一个元素,而此选择符将为每个父元素匹配一个子元素
在每个 ul 中查找最后一个 li:
$("ul li:last-child")
<a href="http://docs.jquery.com/Selectors/onlyChild">:only-child</a>
如果某个元素是父元素中唯一的子元素,那将会被匹配
如果父元素中含有其他元素,那将不会被匹配。
在 ul 中查找是唯一子元素的 li:
$("ul li:only-child")
8.表单选择器 Forms
解释
<a href="http://docs.jquery.com/Selectors/input">:input</a>
匹配所有 input, textarea, select 和 button 元素
查找所有的input元素:
$(":input")
<a href="http://docs.jquery.com/Selectors/text">:text</a>
匹配所有的文本框
查找所有文本框:
$(":text")
<a href="http://docs.jquery.com/Selectors/password">:password</a>
匹配所有密码框
查找所有密码框:
$(":password")
<a href="http://docs.jquery.com/Selectors/radio">:radio</a>
匹配所有单选按钮
查找所有单选按钮
<a href="http://docs.jquery.com/Selectors/checkbox">:checkbox</a>
匹配所有复选框
查找所有复选框:
$(":checkbox")
<a href="http://docs.jquery.com/Selectors/submit">:submit</a>
匹配所有提交按钮
查找所有提交按钮:
$(":submit")
<a href="http://docs.jquery.com/Selectors/image">:image</a>
匹配所有图像域
匹配所有图像域:
$(":image")
<a href="http://docs.jquery.com/Selectors/reset">:reset</a>
匹配所有重置按钮
查找所有重置按钮:
$(":reset")
<a href="http://docs.jquery.com/Selectors/button">:button</a>
匹配所有按钮
查找所有按钮:
$(":button")
<a href="http://docs.jquery.com/Selectors/file">:file</a>
匹配所有文件域
查找所有文件域:
$(":file")
这里要注意一点的是在表单选择器前一定要注意空格问题
<script type="text/javascript">
$(function()
{
alert($('.test :hidden').length); //选择class为test的元素当中的隐藏子元素
alert($('.test:visible').length); //选择隐藏的class为test的元素
});
</script>
</head>
<body>
<div class="test">
<div style="display:none">aaaa</div>
<div style="display:none">bbbb</div>
<div style="display:none">cccc</div>
<div class="test" style="display:none">dddd</div>
</div>
<div class="test" style="display:none">eeee</div>
</body>
</html>
9.表单过滤器 Form Filters
<a href="http://docs.jquery.com/Selectors/enabled">:enabled</a>
匹配所有可用元素
查找所有可用的input元素:
$("input:enabled")
<a href="http://docs.jquery.com/Selectors/disabled">:disabled</a>
匹配所有不可用元素
查找所有不可用的input元素:
$("input:disabled")
<a href="http://docs.jquery.com/Selectors/checked">:checked</a>
匹配所有选中的被选中元素(复选框、单选框等,不包括select中的option)
查找所有选中的复选框元素:
$("input:checked")
<a href="http://docs.jquery.com/Selectors/selected">:selected</a>
匹配所有选中的option元素
查找所有选中的选项元素:
$("select option:selected")
以上基本上可以说是包含了大部分的jquery选择器的内容了,其实这么多的内容一下子要全记住那也不太现实,关键是要理解,用的时候能查到,但最好还是要记住,一个人对jquery选择器的掌握,很大一部分可以反映出他对jquery的掌握,所以掌握好jquery选择器对以后的学习也是比较重要的一个环节