jQuery - How to add HTML 5 data attributes into the DOM

后端 未结 3 1408
陌清茗
陌清茗 2021-02-19 10:02

I am trying to add a HTML 5 data attribute into the DOM. I have seen on the jQuery site the format for data attributes is:

$(\'.pane-field-related-pages ul\').da         


        
3条回答
  •  既然无缘
    2021-02-19 10:24

    In complement to diEcho response you have 2 data() methods in jQuery.

    The first one is detailled in @diEcho response, you apply .data() to a jQuery selection, it's a getter with one arguiment and a setter with more than one argument.

    The second method is jQuery.data(), applied directly to jQuery. It takes one more argument in first position, the DOM element (if you have a jQuery selection do a get(0) you get the DOM element).

提交回复
热议问题