博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
jQuery选择器
阅读量:5275 次
发布时间:2019-06-14

本文共 1317 字,大约阅读时间需要 4 分钟。

 

jQuery选择器

 jQuery选择器模仿css选择器的语法,其作用是,查找符合选择器要求的节点。

 a.基本选择器 

  #id
  .class
  element
  selector1,select2..selectn
  *
例子:
 

Insert title here
hello jQuery
hello java

hello c

 

 b.层次选择器

  select1 select2
  select1>select2
  select1+select2
  select1~select2
  
例子:

1  2 
3 4
5 Insert title here 6 8 29 30 31 hello 732
33
hello 1
34
36
hello 3
38
39

hello 4

40
41 hello 5
42 hello 643 45 46 47

 

 

 
4.过滤选择器
 (1)基本过滤选择器
  :first
  :last
  :not(selector)
  :even
  :odd
  :eq(index)
  :gt(index)
  :lt(index)
  
  例子:

Insert title here
id name
1 zs
2 ww
3 ss

 

 (2)内容过滤选择器 

  :contains(text)
  :empty
  :has(selector)
  :parent
例子:

Insert title here
你好

hello

(3)可见性过滤选择器 :hidden :visible例子:
Insert title here
hello jQuery
hello java

 

 (4)属性过滤选择器

  [attribute]
  [attribute=value]
例子:

Insert title here
hello 1
hello 2
hello 3

 

转载于:https://www.cnblogs.com/hqr9313/archive/2012/08/06/2624978.html

你可能感兴趣的文章
JMS消息
查看>>
Jenkins+ProGet+Windows Batch搭建全自动的内部包(NuGet)打包和推送及管理平台
查看>>
php上传文件及头像预览
查看>>
大四java实习生的一些经历
查看>>
线程池的概念
查看>>
Oracle_Statspack性能诊断工具
查看>>
Java 序列化
查看>>
Java 时间处理实例
查看>>
Java 多线程编程
查看>>
Java 数组实例
查看>>
mysql启动过程
查看>>
2017前端面试题总结
查看>>
Http GetPost网络请求
查看>>
SWIFT国际资金清算系统
查看>>
Sping注解:注解和含义
查看>>
站立会议第四天
查看>>
如何快速掌握一门技术
查看>>
利用AMPScript获取Uber用户数据的访问权限
查看>>
vagrant 同时设置多个同步目录
查看>>
python接口自动化28-requests-html爬虫框架
查看>>