如何将自定义属性分配给 jQuery 对象?
我需要将自定义属性分配给 jQuery 对象。这是对象:
var object = $("<div id='item'></div>");
我需要 object
来拥有自定义数据成员。我怎样才能添加这个?
I need to assign a custom property to a jQuery object. Here is the object:
var object = $("<div id='item'></div>");
I need object
to have a custom data member. How can I add this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
.data()
.data()
.data() 函数允许您存储或检索任意数据并将其与匹配的元素关联。
在许多情况下,最简单的方法是使用 data() 针对 body 标签来存储键值对。
数据存储示例
数据检索示例
参考
The .data() function allows you to store or retrieve arbitrary data and associate it with matched elements.
In many situations, it easiest to store key-value-pairs using data() against the body tag.
Data Storage Example
Data Retrieval Example
Reference
此外,您还可以向封装在 jQuery 对象中的 DOM 对象添加属性。
您可以将 DOM 对象作为任何 jQuery 对象的第一个元素进行访问。
In addition, you can add a property to the DOM object incapsulated in the jQuery object.
You can access the DOM object as the first element of any jQuery object.