Home  >  Article  >  Web Front-end  >  jQuery: The difference between attr() and prop()

jQuery: The difference between attr() and prop()

高洛峰
高洛峰Original
2016-11-18 13:15:181187browse

attr()

Get the value of an attribute for the first element in the set of matched elements or set one or more attributes for every matched element.
Get the attribute of the first element in the set of matched elements, or set one or more attributes for every matched element. Add one or more attributes to a selected element

prop()

Get the value of a property for the first element in the set of matched elements or set one or more properties for every matched element.
Get the set of matched elements The property of the first element in the element, or add one or more properties to each selected element

It can be observed that the functions between the two are very similar, but the objects they operate on are different.

In this way, we reduce the problem to the difference between attribute and property.

Attribute and property both mean attributes. In order to distinguish them, we agree to name attribute as attribute and property as property. Let’s talk about attribute first. In javascript, there is getAttribute(), which is specially used to obtain the attributes of nodes. value.

The attribute value of the node, we refer to the value of src in jQuery: The difference between attr() and prop()

jQuery: The difference between attr() and prop()
    

and setAttribute(), which sets the attribute value of the node.

jQuery: The difference between attr() and prop()
    

You can see that the attribute value of the node has changed. The attribute value set by setAttribute changes the attribute value of the node. The function of

attr() is to combine getAttribute() and setAttribut() in JavaScript. The object of operation is the attribute value of the node.

Let’s talk about property

Property is the property of DOM elements. It is the same as the usual way of using objects. You can get the property value of the object through object.property, or you can set the property value of the object through the method of object.property=property value. .

jQuery: The difference between attr() and prop()
    

You can see that the characteristic value of the DOM element has been obtained. Although it refers to the same content as the attribute value of the node, there is still a difference in form.

Look at setting the attribute value of the DOM element again:

jQuery: The difference between attr() and prop()
    

found that after changing the attribute value of the DOM element, the attribute value of the node element also changed. Then use the getAttribute() method to see if the attribute value just set can be obtained.

jQuery: The difference between attr() and prop()
    

Confirms that changing the property value of the DOM will also change the attribute value of the element.

Could it be said that attribute and property are the same?

In fact, this is not necessarily the case. The real situation is that attribute and property refer to the same data source.

1. Regarding the build-in attribute, attribute and property share data. If the attribute is changed, it will affect the property, and vice versa. However, the custom attributes of the two are independent data. Even if the names are the same, they will not affect each other. It looks like the picture below, but IE6 and 7 do not differentiate and still share custom attribute data.

2. Not all attributes are consistent with the corresponding property names. For example, the class in attribute has the corresponding name in property is className.

3. For properties whose values ​​are true/false, similar to input's checked, etc., the value obtained by the attribute is the value in the HTML document (checked), and the property obtains the calculation result (true/false). Changes in the property do not affect the attribute Literal value, but attribute changes will affect property calculation. jQuery: The difference between attr() and prop()

4. For some path-related attributes, the values ​​obtained by the two are different, but similarly, the attribute obtained is a literal value, and the property obtained is the calculated complete path, just like the return value of src in the above example.

How to choose

Generally speaking, use prop() for built-in attributes and attr() for custom attributes. For other parameters, please refer to the table below.

Statement:
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 admin@php.cn
Previous article:Node.js event loopNext article:Node.js event loop