Home >Web Front-end >JS Tutorial >Usage examples of prop() method in jQuery_jquery
The example in this article describes the usage of the prop() method in jQuery. Share it with everyone for your reference. The specific analysis is as follows:
This method can get or set the attribute value of the matching element.
The effects vary depending on the method parameters.
Grammar structure 1:
When the parameter is an attribute name, this method can match the attribute value of the first matching element with the specified attribute name in the element collection.
Parameter list:
实例代码:
实例一:
以上代码可以返回被选中的checkbox的属性值。
实例代码二:
以上代码中,由于li元素集合中第一个li元素并没有id属性,所以返回值为空。
语法结构二:
以属性的“名/值对”对象方式设置所有匹配元素的属性值。
Parameter list:
实例代码:
实例一:
以上代码能够将选中所有复选框。
实例二:
欢迎来到脚本之家 |
以上代码可以设置td的宽度和高度。
语法三:
以属性名/值对方式设置所有匹配元素的属性值。
Parameter list:
实例代码:
以上代码可以为div设置指定的样式。
语法结构四:
通过函数返回值设置属性值。
Parameter list:
实例代码: