


Jquery attr() method detailed explanation of attribute assignment and attribute acquisition_jquery
The attr() method is used in jquery to get and set element attributes. attr is the abbreviation of attribute. Attr() is often used in jQuery DOM operations. attr() has 4 expressions.
1. attr(attribute name) //Get the value of the attribute (get the attribute value of the first matching element. This method can easily get the value of an attribute from the first matching element. If the element does not have a corresponding attribute, returns undefined )
2. attr(attribute name, attribute value) //Set the value of the attribute (Set an attribute value for all matching elements.)
3. attr(attribute name, function value) //Set the function value of the attribute (Set a calculated attribute value for all matching elements. Do not provide a value, but provide a function, and the value calculated by this function is attribute value. )
4. attr(properties) //Set multiple attribute values for the specified element, namely: {Attribute name one: "Attribute value one", Attribute name two: "Attribute value two", ... ...}. (This is the best way to set many attributes in batches across all matching elements. Note that if you want to set the class attribute of an object, you must use 'className' as the attribute name. Or you can directly use 'class' or ' id'. )
Sample code:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <title>jquery中attr()方法</title> <script src="js/jquery-1.4.2.min.js" language="javascript" type="text/javascript" ></script> <style> p{color:red} li{color:blue;} .lili{font-weight:bold;color:red;} #lili{font-weight:bold;color:red;} </style> </head> <body> <p title="你最喜欢的水果是。">你最喜欢的水果是?</p> <ul> <li title="苹果汁">苹果</li> <li title="橘子汁" alt="123">橘子</li> <li title="菠萝汁">菠萝</li> </ul> <script> ... </script> </body> <html>
1.attr(name)//Get the value of the attribute
1.1 Use attr(name) to get the title value:
<script> alert($("ul li:eq(1)").attr("title")); </script>
Results: Show Orange Juice
1.2 Use attr(name) to get the alt value:
<script> alert($("ul li:eq(1)").attr("alt")); </script>
Result:
Showing 123
2. attr(name,value) //Set the value of the attribute
2.1 Use attr(name,value) to modify the title value to: Don’t eat oranges
<script> $("ul li:eq(1)").attr("title","不吃橘子"); alert($("ul li:eq(1)").attr("title")); </script>
Result:
Show not to eat oranges
3. attr(name,fn) //Set the function value of the attribute
3.1 Set the value of the alt attribute to the value of the title attribute.
<script> $("ul li:eq(1)").attr("title",function(){ return this.alt}); alert($("ul li:eq(1)").attr("title")); </script>
Result:
Showing 123
4.attr(properties) //Set an object in the form of "name/value" as the attributes of all matching elements
4.1 Get the second
- and set the title and alt attributes.
- setting class in
- .
- Apple
- Orange
- Pineapple
- in
- .
- Apple
- Orange
- Pineapple
- in
- and set the style.
- Apple
- Orange
- Pineapple
<script> $("ul li:eq(1)").attr({style:"color:red"}); </script>
Copy after loginResult:
It is wrong to add alt in li. It can only be used in img, area and input elements (including applet elements). For input elements, the alt attribute is intended to replace the submit button image. In order to explain the attr() method in detail here, there is no suitable attribute, so alt is used as an example. It is only for learning and reference of the attr() method usage.
Here is the difference between alt and tite.
alt: This is the text used to describe the graphics. When the picture cannot be displayed, these texts will be displayed instead of the picture. The text will also be displayed when the mouse is moved over the image.
title: It is the text that will be displayed after the mouse is placed on it.
So how to delete attributes?
The keyword to delete attributes in jquery is: removeAttr. Note that A is capitalized. See how to use it:
The same html code in usage one, I want to delete the title attribute of li, then this is it:
<script> $("ul li:eq(1)").removeAttr("title"); </script>
Copy after loginIt’s that simple, attr is actually a simplified implementation of getAttribute in native js, and removeAttr is the abbreviation of removeAttribute.
So is there an attribute similar to attr()?
val() in jquery is similar,
$(this).val(); Gets the value of an element node, equivalent to $(this).attr("value");
$(this).val(value); Set the value of an element node, equivalent to $(this).attr("value",value);
The above detailed explanation of attribute assignment and attribute acquisition of the Jquery attr() method is all the content shared by the editor. I hope it can give you a reference, and I hope you will support Script Home.
<script> $("ul li:eq(1)").attr({id:"lili"}); </script>
Copy after loginResult:
4.4 Get the second
<script> $("ul li:eq(1)").attr({className:"lili"}); </script>
Copy after loginResult:
4.3 Get the setting id of the second
<script> $("ul li:eq(1)").attr({title:"不喝橘子汁",alt:"不是123"}); alert($("ul li:eq(1)").attr("title")); alert($("ul li:eq(1)").attr("alt")); </script>
Result:
Showing 2, don’t drink orange juice, not 123
4.2 Get the second

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

This article will show you how to enable or disable automatic copying of selections to the clipboard in Windows Terminal. Windows Terminal is a multi-tab terminal emulator developed by Microsoft specifically for Windows 11/10, replacing the traditional command prompt. It supports running applications such as Command Prompt, PowerShell, WSL, Azure, etc. Often when working in the terminal, users need to copy commands and output, however the terminal does not support copying selection operations by default. Keep reading this article to learn how to fix this issue. How to enable or disable automatic copying of selections to cache in Terminal? Here's how you can enable or disable automatic copying of selections to the Terminal clipboard: Open the Terminal application and click above

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
