HTML
<div id="you" data-you="Hello mean">super</div>
是#you html元素更改数据 – 你的属性
console.log($("#you").data("you")); // Hello mean $("#you").attr("data-you","yes change you atribute"); console.log($("#you").data("you")); // Hello mean | does not change.
属性“数据 – 您”在更改时不会更改.我该怎么做?
谢谢.
解决方法
attr()而且你不必更改data()方法.
尝试以下方式:
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