Home > Common Problem > body text

How to query whether there is a certain attribute value in jquery

尊渡假赌尊渡假赌尊渡假赌
Release: 2023-06-13 09:37:22
Original
1868 people have browsed it

The method for jquery to query whether there is an attribute value is: 1. Create an HTML sample file and introduce the jQuery file; 2. Create a p tag and set the attribute to "id="my-paragraph" data-role=" paragraph""; 3. jQuery expands to add the "hasAttr()" method; 4. Use the ".attr()" method to get or set the element attribute value, and ".hasAttr()" checks whether the attribute and attribute value are consistent.

How to query whether there is a certain attribute value in jquery

The operating system of this tutorial: Windows 10 system, jQuery3.6.0 version, Dell G3 computer.

In jQuery, you can use the `.attr()` method to get or set the attribute value of an element.

If you want to query whether an element has a specific attribute, you can use the `.hasAttr()` method.

The example is as follows:

//html

Lorem ipsum

Copy after login

If you want to check whether this paragraph element has the `data-role` attribute and whether its value is `paragraph`, the code is as follows:

//javascript
if ($("#my-paragraph").hasAttr("data-role") && $("#my-paragraph").attr("data-role") === "paragraph") {
  // do something if the attribute exists and has the expected value
} else {
  // do something else if the attribute doesn't exist or has a different value
}
Copy after login

Note that the `hasAttr()` method is not a built-in method of jQuery. You need to use the following code to extend jQuery to add this method:

//javascript
$.fn.hasAttr = function(name) {
    return this.attr(name) !== undefined;
};
Copy after login

The above is the detailed content of How to query whether there is a certain attribute value in jquery. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact [email protected]
Latest Articles by Author
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!