Learn Jquery with JQuery API Part 2 Properties_jquery
We often need to change node attributes, content, and text, so we need to use several functions here.
1 attribute
Here we see an attr() function, which has four forms. Attr(name) is to get a selected attribute value, attr(properties)attr (key, value) attr (key, fn) is to assign a value to an attribute
What I want to say here is that there is such a design in Jquery. The same function is used to obtain the value of an object and assign a value to an object. Use fn(name) to assign a value to an object, and use fn(name, value) to assign a value to an object.
First look at how attr(name) gets an attribute value
We have
In this way we hope to get the value of stc in img. First we use the selector to select this img $ ("img") gets the node above, and then we use attr() to get the value of src: $("img").attr("src")
In this way we get the value of 1.jpg
Now we want to replace the image 1.jpg with the image 2.jpg: just use $("img").attr("src","2.jpg"), this is fn ( name, key), of course we know that in JavaScript, for example, onclick may be a function. Of course, other attributes can also be functions, so our key can also be a function $("img").attr("src ”, function(){return '3.jpg'}), this is the second form, which is actually the same as the first one
The third form, that is, attr (properties) is in josn format. Name: value is used to assign attributes. In Jquery, this method is very commonly used, and the structure is also very clear
For example, if we want to set the alt and src of img, we can directly write it as $("img").attr( {src:”4.jpg”,alt:”Description”})
Generally when we build a system, we need to add, modify and delete. We have talked about the first two before, so how to delete an attribute?
Here we need to use removeAttr(name), which is easy to understand. It is just the opposite of arrt(name). One is to get an attribute, and the other is to delete it. An attribute $("img").removeAttr("alt")
Okay, let's summarize several functions for operating attributes
Search: $("img").attr("src") Find the value of src
Add/modify $(“img”).attr(“src”,”2.jpg”) $(“img”).attr(“src”,function(){return “2 .jpg"}) $("img").attr({src:"2.jpg"})
Delete $("img").removeAttr("src")
2 css class
When we need to add a css style to a node such as
, what do we need to do?
According to the above attribute method, we first add a css Write a class style .sty{...}, we select this div and add a class $("div").attr("class","sty"),
Later we found out if this is too It's troublesome, so I invented addClass(class) to abbreviate the above
$("div").addClass("sty") and that's it.
Since it has been added, of course it is inevitable to delete $("div").removeClass("sty") to delete the class sty
There is also a function toggleClass (class), if it exists, delete it, if it does not exist, delete it Just add.
This is indeed a very weird function. What is the use of it? For example, we are in a group of one
If we add this function to both mouse entry and mouse movement out of li, we can achieve the effect of mouse movement
3 html
Here we see a html() and an html(val), which is the type of function we mentioned earlier: fn(name) fn(name, value)
Html() is Get the html class content of the first matching element
Html (val) is to set the html class content of the matching node
4 text
There are also two functions here text() text(val) one is to get the value and the other is to set the value. It is similar to html
The difference in the value is that html() takes the html class content of the first element that matches, and text is the obtained text. If the html node
is ignored and assigned a value, text() will convert the html class content such as into text and html() will still be interpreted as the html element
5 value
Here are still the same val() and val(val), one is to get the value, and the other is to set the value. For example,
We get this value some text $("input").val ()
Set this value $("input").val("xxiu")
Here we have finished looking at the attributes and found that we only looked at a few functions
attr(name[,val,|fn]) removeAttr(name) Add settings to delete an attribute
addClass(class) removeClass(class) Add settings to delete a class
html([val]) Get/set a heml
text([val]) gets/sets a text
val([val]) gets/sets a value

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:

Thread of Despair is a rare card in Blizzard Entertainment's masterpiece "Hearthstone" and has a chance to be obtained in the "Wizbane's Workshop" card pack. Can consume 100/400 arcane dust points to synthesize the normal/gold version. Introduction to the attributes of Hearthstone's Thread of Despair: It can be obtained in Wizbane's workshop card pack with a chance, or it can also be synthesized through arcane dust. Rarity: Rare Type: Spell Class: Death Knight Mana: 1 Effect: Gives all minions a Deathrattle: Deals 1 damage to all minions

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
