Jquery api cheat sheet sharing_jquery
Selector |
Match |
* |
All elements |
#id |
Element with given ID |
element |
All elements of a given type, say html tags |
.class |
All elements with a given class |
a,b |
Elements that match a or match b |
a b |
Elements matching b that are descendants of a (including grandchildren) |
a > b |
Elements that match b as a child element of a (only including children) |
:first |
The first element in the result set |
:last |
The last element in the result set |
:not(a) |
All elements in the result set that do not match a |
:even |
Even elements in the result set (counting from 0) |
:odd |
Odd elements in the result set (counting from 0) |
:eq(index) |
The element with index index in the result set (counting from 0) |
:gt(index) |
All elements in the result set after the given index (counting from 0) |
:lt(index) |
All elements in the result set before the given index (counting from 0) |
:header |
Heading element (
|
:animated |
The element whose animation is playing |
:contains(text) |
An element containing the given text text |
:empty |
Elements that do not contain child nodes |
:has(a) |
At least one of the descendant elements matches a |
:parent |
The direct parent element of the current element |
:hidden |
Hidden elements, including hiding through css and |
:visible |
Opposite of the element matched by :hidden |
[attr] |
Element with attribute attr |
[attr=value] |
Elements whose attr attribute is value |
[attr!=value] |
Elements whose attr attribute is not value |
[attr^=value] |
Elements whose attr attribute value starts with value |
[attr$=value] |
Elements whose attr attribute value ends with value |
[attr*=value] |
The value of the attr attribute contains the string value |
:nth-child(index) |
Matches the index child element of each element in the collection (counting from 1) |
:nth-child(even) |
Matches the even-numbered child elements of each element in the set (counting from 1)
|
:nth-child(odd) |
Matches the odd-numbered child elements of each element in the set (counting from 1)
|
:nth-child(formula) |
Formula is a formula, the format is an b, a and b are integers |
:first-child |
Matches the first child element of each element in the collection
|
:last-child |
Matches the last child element of each element in the set
|
:only-child |
Matches the unique sub-element of each element in the collection. If it is not unique, it will not be executed
|
:input |
All |
:text |
element of Type="text" |
:password |
element of Type="password" |
:radio |
element with Type="radio" |
:checkbox |
element of Type="checkbox" |
:submit |
element of Type="submit" |
:image |
element of Type="image" |
:reset |
element with Type="reset" |
:button |
elements and |
:file |
element of Type="file" |
:enabled |
Enabled form elements |
:disabled |
Disabled form elements |
:checked |
Selected checkbox and radio button elements |
:selected |
Selected |
Traversal method |
The jQuery object that returns the value contains |
.filter(selector) |
The selected element matching the given selector |
.filter(callback) |
The callback function callback returns true for the selected element |
.eq(index) |
The index-th selected element counting from 0 |
.slice(start,[end]) |
The selected elements of the given range counting from 0 |
.not(selector) |

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

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: <

OracleAPI integration strategy analysis: To achieve seamless communication between systems, specific code examples are required. In today's digital era, internal enterprise systems need to communicate with each other and share data, and OracleAPI is one of the important tools to help achieve seamless communication between systems. This article will start with the basic concepts and principles of OracleAPI, explore API integration strategies, and finally give specific code examples to help readers better understand and apply OracleAPI. 1. Basic Oracle API

Oracle is a world-renowned database management system provider, and its API (Application Programming Interface) is a powerful tool that helps developers easily interact and integrate with Oracle databases. In this article, we will delve into the Oracle API usage guide, show readers how to utilize data interface technology during the development process, and provide specific code examples. 1.Oracle

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:

Title: How to deal with Laravel API error problems, specific code examples are needed. When developing Laravel, API errors are often encountered. These errors may come from various reasons such as program code logic errors, database query problems, or external API request failures. How to handle these error reports is a key issue. This article will use specific code examples to demonstrate how to effectively handle Laravel API error reports. 1. Error handling in Laravel

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
