jquery set data attr

后端 未结 6 824
爱一瞬间的悲伤
爱一瞬间的悲伤 2020-12-14 01:35

Html

super

is #you html element change data-you attribute

6条回答
  •  囚心锁ツ
    2020-12-14 02:17

    attr() And you can not have to change the data() method.

    Try the following way:

    console.log($("#you").data("you")); // Hello mean
    
    $("#you").data("you", "yes change you atribute"); // yes change you atribute
    
    console.log($("#you").data("you")); //  yes change you atribute
    

    examples of data http://api.jquery.com/data/​​​​​​

提交回复
热议问题