jquery selector
This article talks about jquery's selector. If you don't know about jquery's selector or are interested in jquery's selector, then let's take a look at this article. Okay, let's stop talking and get to the point. Bar
1.jQuery basic selector
###id
根据给定id匹配一个元素
.class
根据给定class匹配一个元素
element 根据给定元素名匹配元素
* 匹配所有的元素
selector1,selector2.,···,selectorN将每一个选择器匹配到的元素合并后一起返回
Copy after login
#id 根据给定id匹配一个元素 .class 根据给定class匹配一个元素 element 根据给定元素名匹配元素 * 匹配所有的元素 selector1,selector2.,···,selectorN将每一个选择器匹配到的元素合并后一起返回
2. Hierarchical selector$(“parent child”)
选择parent中所有的child元素
$(“parent >child”)
选择parent中的子元素,而上面的是选择所有后代元素
$(“prev+next”)
选择紧跟在prev元素后的next元素(同辈)
注意:等价于 next()函数,即$(“.one”).next(“p”)
$(“prev~siblings”)
选择prev元素之后的所有siblings元素(同辈)
注意:等价于nextAll()函数,即$(“.one”).nextAll(“p”)
Copy after login
$(“parent child”) 选择parent中所有的child元素 $(“parent >child”) 选择parent中的子元素,而上面的是选择所有后代元素 $(“prev+next”) 选择紧跟在prev元素后的next元素(同辈) 注意:等价于 next()函数,即$(“.one”).next(“p”) $(“prev~siblings”) 选择prev元素之后的所有siblings元素(同辈) 注意:等价于nextAll()函数,即$(“.one”).nextAll(“p”)
3. Filter selector
a.Basic filter selector:first
选择第一个元素 $(“p:first”)选择所有p元素中的第一个p元素,
与下面的first-child有区别
:last
选择最后一个元素,原理同上
:not(selector)
去除所有与给定选择器匹配的元素
:even
选择索引是偶数的所有元素
注意:索引从0开始
:odd
选择索引是奇数的所有元素
:eq(index)
选择索引等于index的元素
注意:index从0开始
:gt(index)
选择索引大于index的元素
:lt(index)
选择索引小于index的元素
:header
选择所有的标题元素,如h1,h2等等
:animated
选择正在执行动画的元素
:focus
选择当前获取焦点的元素
Copy after login
:first 选择第一个元素 $(“p:first”)选择所有p元素中的第一个p元素, 与下面的first-child有区别 :last 选择最后一个元素,原理同上 :not(selector) 去除所有与给定选择器匹配的元素 :even 选择索引是偶数的所有元素 注意:索引从0开始 :odd 选择索引是奇数的所有元素 :eq(index) 选择索引等于index的元素 注意:index从0开始 :gt(index) 选择索引大于index的元素 :lt(index) 选择索引小于index的元素 :header 选择所有的标题元素,如h1,h2等等 :animated 选择正在执行动画的元素 :focus 选择当前获取焦点的元素
b. Content Filter
##:contains(text)
选择含有文本内容为text的元素
:empty
选择不包含子元素或者文本的元素
:has(selector)
选择含有选择器所匹配的元素的元素
:parent
选择含有子元素或者文本的元素(
这个比较绕)
Copy after login
c. Visibility Filter Selector:contains(text) 选择含有文本内容为text的元素 :empty 选择不包含子元素或者文本的元素 :has(selector) 选择含有选择器所匹配的元素的元素 :parent 选择含有子元素或者文本的元素( 这个比较绕)
:hidden
选择所有不可见的元素,
这个需要注意的是:它不仅包括样式属性display为“none”的元素,也包括文本隐藏域(<input type=“hidden” />)和visibility:hidden之类的元素
:visible
选择所有可见元素
Copy after login
d. Attribute filter selector:hidden 选择所有不可见的元素, 这个需要注意的是:它不仅包括样式属性display为“none”的元素,也包括文本隐藏域(<input type=“hidden” />)和visibility:hidden之类的元素 :visible 选择所有可见元素
【attribute】
选择拥有此属性的元素
【attribute = value】 选择属性值为value的元素
【attribute !=value】
选择属性值不为value的元素
【attribute^=value】
选择属性值以value开始的元素
【attribute $=value】
选择属性值以value结束的元素
【attribute *=value】
选择属性值含有value的元素
【attribute |=value】
选择属性等于给定字符串或者以该字符串为前缀(该字符串后跟一个连字符“-”)的元素
【attribute ~=value】
选择属性用空格分隔的值中包含一个给定值的元素
【attribute1】【attribute2】【attributeN】用属性选择器合并成一个复合属性选择器,满足多个条件,没选择一次,缩小一次范围
Copy after login
e. Child element filter selector【attribute】 选择拥有此属性的元素 【attribute = value】 选择属性值为value的元素 【attribute !=value】 选择属性值不为value的元素 【attribute^=value】 选择属性值以value开始的元素 【attribute $=value】 选择属性值以value结束的元素 【attribute *=value】 选择属性值含有value的元素 【attribute |=value】 选择属性等于给定字符串或者以该字符串为前缀(该字符串后跟一个连字符“-”)的元素 【attribute ~=value】 选择属性用空格分隔的值中包含一个给定值的元素 【attribute1】【attribute2】【attributeN】用属性选择器合并成一个复合属性选择器,满足多个条件,没选择一次,缩小一次范围
:nth-child(index/even/odd/eq)
:eq(index)只会匹配一个元素,而:nth-child将为每一个父元素匹配子元素,
并且:nth-child(index)的index是从1开始的,:eq(index)是从0开始的
:first-child
选择每个父元素的第一个子元素,
:first只会返回单个元素,而:first-child将会为每个父元素匹配第一个子元素
:last-child
原理同上
:only-child 如果某个元素是它父元素中唯一的子元素,那么就会匹配
例如:$(“ul li:only-child”)在ul中选择有唯一子元素的li元素
Copy after login
f. Form object attribute filter selector:nth-child(index/even/odd/eq) :eq(index)只会匹配一个元素,而:nth-child将为每一个父元素匹配子元素, 并且:nth-child(index)的index是从1开始的,:eq(index)是从0开始的 :first-child 选择每个父元素的第一个子元素, :first只会返回单个元素,而:first-child将会为每个父元素匹配第一个子元素 :last-child 原理同上 :only-child 如果某个元素是它父元素中唯一的子元素,那么就会匹配 例如:$(“ul li:only-child”)在ul中选择有唯一子元素的li元素
:enabled
选择所有可用元素
:disabled
选择所有不可用元素
:checked
选择所有被选中的元素,包括单选和复选
:selected
选择所有被选中的选项元素(下拉列表)
Copy after login
4. Form selector:enabled 选择所有可用元素 :disabled 选择所有不可用元素 :checked 选择所有被选中的元素,包括单选和复选 :selected 选择所有被选中的选项元素(下拉列表)
:input
选择所有的表单元素
包括input、textarea、select、button元素
例如:$(“#form :input”)选择所有的表单元素 与 $(“#form input”)只获取input元素
:text
选择所有单行文本框
:password
选择所有密码框
:radio
选择所有单选框
:checkbox
选择所有多选框
:submit
选择所有提交按钮
:image
选择所有图像按钮
:reset
选择所有重置按钮
:button
选择所有按钮
:file
选择所有的上传域
:hidden
选择所有不可见元素
Copy after login
The above selectors can basically meet the needs of daily development and use. If you don’t know much about it, you can implement both sides yourself and it will be easy to master! :input 选择所有的表单元素 包括input、textarea、select、button元素 例如:$(“#form :input”)选择所有的表单元素 与 $(“#form input”)只获取input元素 :text 选择所有单行文本框 :password 选择所有密码框 :radio 选择所有单选框 :checkbox 选择所有多选框 :submit 选择所有提交按钮 :image 选择所有图像按钮 :reset 选择所有重置按钮 :button 选择所有按钮 :file 选择所有的上传域 :hidden 选择所有不可见元素
Related recommendations: Detailed explanation of jQuery selector How to deal with special symbols
The above is the detailed content of jquery selector. For more information, please follow other related articles on the PHP Chinese website!

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics

Detailed explanation of jQuery reference method: Quick start guide jQuery is a popular JavaScript library that is widely used in website development. It simplifies JavaScript programming and provides developers with rich functions and features. This article will introduce jQuery's reference method in detail and provide specific code examples to help readers get started quickly. Introducing jQuery First, we need to introduce the jQuery library into the HTML file. It can be introduced through a CDN link or downloaded

How to remove the height attribute of an element with jQuery? In front-end development, we often encounter the need to manipulate the height attributes of elements. Sometimes, we may need to dynamically change the height of an element, and sometimes we need to remove the height attribute of an element. This article will introduce how to use jQuery to remove the height attribute of an element and provide specific code examples. Before using jQuery to operate the height attribute, we first need to understand the height attribute in CSS. The height attribute is used to set the height of an element

How to use PUT request method in jQuery? In jQuery, the method of sending a PUT request is similar to sending other types of requests, but you need to pay attention to some details and parameter settings. PUT requests are typically used to update resources, such as updating data in a database or updating files on the server. The following is a specific code example using the PUT request method in jQuery. First, make sure you include the jQuery library file, then you can send a PUT request via: $.ajax({u

Title: jQuery Tips: Quickly modify the text of all a tags on the page In web development, we often need to modify and operate elements on the page. When using jQuery, sometimes you need to modify the text content of all a tags in the page at once, which can save time and energy. The following will introduce how to use jQuery to quickly modify the text of all a tags on the page, and give specific code examples. First, we need to introduce the jQuery library file and ensure that the following code is introduced into the page: <

Title: Use jQuery to modify the text content of all a tags. jQuery is a popular JavaScript library that is widely used to handle DOM operations. In web development, we often encounter the need to modify the text content of the link tag (a tag) on the page. This article will explain how to use jQuery to achieve this goal, and provide specific code examples. First, we need to introduce the jQuery library into the page. Add the following code in the HTML file:

How to tell if a jQuery element has a specific attribute? When using jQuery to operate DOM elements, you often encounter situations where you need to determine whether an element has a specific attribute. In this case, we can easily implement this function with the help of the methods provided by jQuery. The following will introduce two commonly used methods to determine whether a jQuery element has specific attributes, and attach specific code examples. Method 1: Use the attr() method and typeof operator // to determine whether the element has a specific attribute

jQuery is a popular JavaScript library that is widely used to handle DOM manipulation and event handling in web pages. In jQuery, the eq() method is used to select elements at a specified index position. The specific usage and application scenarios are as follows. In jQuery, the eq() method selects the element at a specified index position. Index positions start counting from 0, i.e. the index of the first element is 0, the index of the second element is 1, and so on. The syntax of the eq() method is as follows: $("s

目录1:basename()2:copy()3:dirname()4:disk_free_space()5:disk_total_space()6:file_exists()7:file_get_contents()8:file_put_contents()9:filesize()10:filetype()11:glob()12:is_dir()13:is_writable()14:mkdir()15:move_uploaded_file()16:parse_ini_file()17:
