Is there a good way to attach JavaScript objects to HTML elements?

后端 未结 2 1961
情书的邮戳
情书的邮戳 2020-12-04 18:30

I want to associate a JavaScript object with an HTML element. Is there a simple way to do this?

I noticed HTML DOM defines a setAttribute method and it looks like th

2条回答
  •  抹茶落季
    2020-12-04 19:30

    Have you looked at the jQuery data() method? You can assign complex objects to the element if you want or you can leverage that method to hold a reference to an object (or some other data) at the very least.

提交回复
热议问题