博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
jQuery选择器 大于 空格 波浪线 加号
阅读量:5376 次
发布时间:2019-06-15

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

JQuery选择器 大于 空格 波浪线 加号的区别

元素遍历

符号 说明
空格 $(‘parent child’)表示获取parent下的所有的child节点(所有的子孙)。
大于号 $(‘parent > child’)表示获取parent下的所有叫child的儿子(第一代)。
加号 $(‘pre + nextbrother’)表示获得pre节点的下一个兄弟节点,相当于next()方法
波浪号 $(‘pre ~ brother’)表示获取pre节点的后面的所有兄弟节点,相当于nextAll()方法。

参见


Child Selector (“parent > child”)

Selects all direct child elements specified by “child” of elements specified by “parent”.


Descendant Selector (“ancestor descendant”)

Selects all elements that are descendants of a given ancestor.


Next Adjacent Selector (“prev + next”)

Selects all next elements matching “next” that are immediately preceded by a sibling “prev”.


Next Siblings Selector (“prev ~ siblings”)

Selects all sibling elements that follow after the “prev” element, have the same parent, and match the filtering “siblings” selector.


Attribute Contains Prefix Selector [name|=”value”]

Selects elements that have the specified attribute with a value either equal to a given string or starting with that string followed by a hyphen (-).


转载于:https://www.cnblogs.com/slankka/p/9158532.html

你可能感兴趣的文章
工程android配置windows7下cocos2d-x、android的开发环境
查看>>
参数展示初始三层架构
查看>>
项目视频光盘项目中所学概览-html5+批处理+bat转exe
查看>>
hdu 1028
查看>>
思考技术 (一) —— 什么是新技术
查看>>
ubuntu更改源为aliyun的源;ROS改为新加坡源
查看>>
正则表达式入门
查看>>
Halcon标定与自标定
查看>>
Non-local Neural Networks
查看>>
apache Internal Server Error 解决方法
查看>>
Ubuntu14.04安装CUDA8.0与Cudnn5.1
查看>>
(七)STM32的RTC简单操作
查看>>
Floyd最短路算法
查看>>
【转】Java并发编程:并发容器之ConcurrentHashMap
查看>>
IIS
查看>>
thinkphp5.0独立配置
查看>>
day2逻辑运算作业详解
查看>>
JQuery将DataTable list<>数据转换成JSON数据 动态创建表格显示数据
查看>>
MySQL中的information_schema
查看>>
一般路由设置
查看>>