1.基本过滤选择器介绍

基本过滤器:

  • :first           获取数组中第一个元素
  • :last            获取数组中最后一个
  • :eq(selector)   获取指定索引
  • :gt(index)        大于指定索引
  • :lt(index)         小于指定索引
  • :even              偶数,从0开始计数(0、2、4即1/3/5行)
  • :odd                奇数
  • :not(selector)    去除所有与指定选择器匹配的元素
  • :header          获得所有标题元素
  • :animated       获得所有动画
  • :focus            获得焦点

2.代码实例

  1 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
2 <html xmlns="http://www.w3.org/1999/xhtml">
3 <head>
4 <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
5 <title>03-基本过滤选择器.html</title>
6 <!-- 引入jQuery -->
7 <script src="../js/jquery-1.8.3.js" type="text/javascript"></script>
8 <script src="./script/assist.js" type="text/javascript"></script>
9 <link rel="stylesheet" type="text/css" href="./css/style.css" />
10 <script type="text/javascript">
11 $(function(){
12 // <input type="button" value="选择第一个div元素." id="btn1"/>
13 $("#btn1").click(function(){
14 $("div:first").css("background-color","red");
15 });
16 // <input type="button" value="选择最后一个div元素." id="btn2"/>
17 $("#btn2").click(function(){
18 $("div:last").css("background-color","red");
19 });
20 // <input type="button" value="选择class不为one的 所有div元素." id="btn3"/>
21 $("#btn3").click(function(){
22 $("div:not('.one')").css("background-color","red");
23 });
24 // <input type="button" value="选择索引值为偶数 的div元素." id="btn4"/>
25 $("#btn4").click(function(){
26 $("div:even").css("background-color","red");
27 });
28 // <input type="button" value="选择索引值为奇数 的div元素." id="btn5"/>
29 $("#btn5").click(function(){
30 $("div:odd").css("background-color","red");
31 });
32 // <input type="button" value="选择索引值等于3的元素." id="btn6"/>
33 $("#btn6").click(function(){
34 $("div:eq(3)").css("background-color","red");
35 });
36 // <input type="button" value="选择索引值大于3的元素." id="btn7"/>
37 $("#btn7").click(function(){
38 $("div:gt(3)").css("background-color","red");
39 });
40 // <input type="button" value="选择索引值小于3的元素." id="btn8"/>
41 $("#btn8").click(function(){
42 $("div:lt(3)").css("background-color","red");
43 });
44 // <input type="button" value="选择所有的标题元素." id="btn9"/>
45 $("#btn9").click(function(){
46 $(":header").css("background-color","red");
47 });
48 // <input type="button" value="选择当前正在执行动画的所有元素." id="btn10"/>
49 $("#btn10").click(function(){
50 $(":animated").css("background-color","red");
51 });
52 // <input type="text" value="请输入账号" defaultValue="请输入账号" />
53 // <input type="text" value="请输入密码" defaultValue="请输入密码"/>
54 //给文本框绑定获取和失去焦点的事件
55 //on支持一个函数可以绑定多个事件
56 $("input[type='text']").on("blur focus",function(){
57 var defaultValue = $(this).attr("defaultValue");
58 if($(this).is(":focus")){
59 if($(this).val() == defaultValue){
60 $(this).val("");
61 }
62 } else {
63 if($(this).val() == "") {
64 $(this).val(defaultValue);
65 }
66 }
67 });
68 });
69 </script>
70 </head>
71 <body>
72 <h3>基本过滤选择器.</h3>
73 <button id="reset">手动重置页面元素</button>
74 <input type="checkbox" id="isreset" checked="checked"/><label for="isreset">点击下列按钮时先自动重置页面</label><br /><br />
75
76 <input type="button" value="选择第一个div元素." id="btn1"/>
77 <input type="button" value="选择最后一个div元素." id="btn2"/>
78 <input type="button" value="选择class不为one的 所有div元素." id="btn3"/>
79 <input type="button" value="选择索引值为偶数 的div元素." id="btn4"/>
80 <input type="button" value="选择索引值为奇数 的div元素." id="btn5"/>
81 <input type="button" value="选择索引值等于3的元素." id="btn6"/>
82 <input type="button" value="选择索引值大于3的元素." id="btn7"/>
83 <input type="button" value="选择索引值小于3的元素." id="btn8"/>
84 <input type="button" value="选择所有的标题元素." id="btn9"/>
85 <input type="button" value="选择当前正在执行动画的所有元素." id="btn10"/>
86 <input type="text" value="请输入账号" defaultValue="请输入账号" />
87 <input type="text" value="请输入密码" defaultValue="请输入密码"/>
88
89 <br /><br />
90
91 <!-- 测试的元素 -->
92 <div class="one" id="one" >
93 id为one,class为one的div
94 <div class="mini">class为mini</div>
95 </div>
96
97 <div class="one" id="two" title="test" >
98 id为two,class为one,title为test的div.
99 <div class="mini" title="other">class为mini,title为other</div>
100 <div class="mini" title="test">class为mini,title为test</div>
101 </div>
102
103 <div class="one">
104 <div class="mini">class为mini</div>
105 <div class="mini">class为mini</div>
106 <div class="mini">class为mini</div>
107 <div class="mini"></div>
108 </div>
109
110
111
112 <div class="one">
113 <div class="mini">class为mini</div>
114 <div class="mini">class为mini</div>
115 <div class="mini">class为mini</div>
116 <div class="mini" title="tesst">class为mini,title为tesst</div>
117 </div>
118
119
120 <div style="display:none;" class="none">style的display为"none"的div</div>
121
122 <div class="hide">class为"hide"的div</div>
123
124 <div>
125 包含input的type为"hidden"的div<input type="hidden" size="8"/>
126 </div>
127
128
129 <span id="mover">正在执行动画的span元素.</span>
130
131 </body>
132 </html>

jQuery--基本过滤选择器的更多相关文章

  1. jQuery 简单过滤选择器

    <!DOCTYPE HTML> <html> <head> <title> 使用jQuery基本过滤选择器 </title> <scr ...

  2. jQuery简单过滤选择器

    <html xmlns="http://www.w3.org/1999/xhtml"> <head>     <!--jQuery选择器详解 根据所获 ...

  3. jQuery基本过滤选择器

    jQuery基本过滤选择器: <h1>this is h1</h1> <div id="p1"> <h2>this is h2< ...

  4. Jquery的过滤选择器分为哪几种?

    Jquery的过滤选择器分为哪几种? 转载▼ 标签: jquery 过滤选择器 分类 分类: JQuery 所有的过滤选择器分为哪几种: 一.基本过滤选择器(重点掌握下列八个) :first 选取第一 ...

  5. 第一百六十五节,jQuery,过滤选择器

    jQuery,过滤选择器 学习要点: 1.基本过滤器 2.内容过滤器 3.可见性过滤器 4.子元素过滤器 5.其他方法 过滤选择器简称:过滤器.它其实也是一种选择器,而这种选择器类似与 CSS3 (h ...

  6. jquery :checked(过滤选择器) 和 空格:checked(后代选择器)

    jquery 过滤选择器 和 后代选择器 <%@ page language="java" contentType="text/html; charset=UTF- ...

  7. JQuery 可见性过滤选择器

    <!DOCTYPE html> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <m ...

  8. JQuery 内容过滤选择器

    <!DOCTYPE html> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <m ...

  9. jQuery内容过滤选择器与子元素过滤选择器用法实例分析

    jQuery选择器内容过滤 一.:contains(text) 选择器::contains(text)描述:匹配包含给定文本的元素返回值:元素集合 示例: ? 1 2 $("div.mini ...

  10. jquery :checked(过滤选择器) 和 空格:checked(后代选择器)【转】

    jquery 过滤选择器 和 后代选择器 <%@ page language="java" contentType="text/html; charset=UTF- ...

随机推荐

  1. 数据库项目部署(nginx)

    1.在虚拟机2008server下载nginx http://nginx.org/download/nginx-1.17.10.zip 注1:此版本为window版本 linux版本 2. 解压软件至 ...

  2. 轩辕展览-VR虚拟展厅设计的好处和优势是什么?

    yu情仍在继续,实体展厅很糟糕,在过去两年之中,越来越多的实体展厅因闲置而关闭,线上VR虚拟展厅设计逐渐走出圈子,凭借云展示的优势和国家政策的支持,登上展示和销售的旗帜. 产品线上展厅的优势是什么1. ...

  3. 五分钟,手撸一个Spring容器!

    大家好,我是老三,Spring是我们最常用的开源框架,经过多年发展,Spring已经发展成枝繁叶茂的大树,让我们难以窥其全貌. 这节,我们回归Spring的本质,五分钟手撸一个Spring容器,揭开S ...

  4. 大数据BI系统是怎么助力企业长久发展的

    多元化集团企业在发展到一定阶段后,往往会遇到业务与财务分离.管理缺乏系统决策支持等管理问题.财务决策支持系统建设实施BI是管理升级的内在要求. 1996年,加特纳集团提出了商业智能(Businesin ...

  5. 重点收藏!BI数据分析工具哪家强?

    信息爆炸时代,大数据晋升为一个时髦词汇.不论是在哪个行业领域,大数据分析成为各企业备受推崇的决策工具.对于海量数据的挖掘,有助于统计事情发生的概率,帮助人们计算做某些事情成功的几率.企业正在数据的海洋 ...

  6. c# 编程学习(五)

    使用复合赋值和循环语句 使用 while 语句,可在条件为 true 的前提下重复运行一个语句.while 语句的语法如下:  while ( booleanExpression ) statemen ...

  7. 【C# 线程】开篇 线程

    概述 线程主要学习什么,通过一个月的摸索.终于总结出来了:学习Thread类涉及到学习Thread类涉及到线程单元状态: ApartmentState.GetApartmentState\SetApa ...

  8. cannot send list of active checks to "127.0.0.1": host [Zabbix server] not monitored

    查看错误日志:  /etc/log/zabbix/zabbix_server.log 3148:20210404:233938.363 cannot send list of active check ...

  9. Pandas:将DataFrame中的一列转化为List

    #假设data是一个DataFrame对象,如果要把它的第二列转换为List print(data.iloc[:,1].to_list())

  10. ARP协议、路由器详细工作原理

    ARP原理分析 第一次通信时,有对方IP地址但是没有目标MAC地址,该PC就会在网络层启动ARP协议生成一个ARP报文"我叫1.1,我的MAC是AA;谁是1.3,你的MAC是多少?" ...