Network Security Internet Technology Development Database Servers Mobile Phone Android Software Apple Software Computer Software News IT Information

In addition to Weibo, there is also WeChat

Please pay attention

WeChat public account

Shulou

How jquery adds attribute values to elements

2025-04-05 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Development >

Share

Shulou(Shulou.com)06/02 Report--

This article focuses on "how to add attribute values to elements by jquery". Interested friends may wish to take a look. The method introduced in this paper is simple, fast and practical. Let's let the editor take you to learn how jquery adds attribute values to elements.

Jquery add attribute value to the element method: 1, use the "$(element)" statement to get the specified element object; 2, use the attr () method to add attributes and values to the obtained element, the syntax is "element object .attr (attribute,value)".

The operating environment of this tutorial: windows7 system, jquery1.10.0 version, Dell G3 computer.

How jquery adds attribute values to elements

In jQuery, you can use the attr () method to increase the attribute value of the element, and the attr () method to set or return the attribute value of the selected element. The working mode of the method is also different according to the different parameters of the method. Returns the attribute value of the selected element.

The syntax of this method is:

$(selector) .attr (attribute,value)

Attribute specifies the property whose value you want to get.

Let's take a look at how to add attribute values to an element through an example, as follows:

We add a div to the html, and the div has only the class attribute. Then add a button to trigger the event that adds the property. Then introduce the jquery script into html. Then add a function, a function for button events, to script.

The function is simple, just use the attr method of jquery to set the property. The first parameter is the name of the property to be added, and the second is the value of the property. Here we add an id attribute for div.

Add the attribute function setAttr () {$(".jquery") .attr ("id", "bd");}

After running the page, from the source code of the page, the div now has no id attribute.

Click the button on the page to trigger the event and add the id attribute to the div.

After clicking, and then looking at the source code, you can see that you have successfully added an id attribute to div.

At this point, I believe you have a deeper understanding of "how jquery adds attribute values to elements". You might as well do it in practice. Here is the website, more related content can enter the relevant channels to inquire, follow us, continue to learn!

Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.

Views: 0

*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.

Share To

Development

Wechat

© 2024 shulou.com SLNews company. All rights reserved.

12
Report