jquery设置数据attr

前端之家收集整理的这篇文章主要介绍了jquery设置数据attr前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
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

数据示例
http://api.jquery.com/data/

原文链接:https://www.f2er.com/jquery/180318.html

猜你在找的jQuery相关文章