gpt4 book ai didi

javascript - 使用 jquery 解析数据-*

转载 作者:行者123 更新时间:2023-11-30 13:37:14 25 4
gpt4 key购买 nike

如何使用 JQuery 解析 data-* 属性?像 $('a').attr('data-*').each(function(){...}); 这样的东西可能吗?有没有简单的方法?

最佳答案

我想你正在尝试做这样的事情:

$('a').filter(function() {
//if this function returns false, it will not be included in the set.
return $(this).data().length > 0;
}).each(function() {
//iterate over every matched DOM element
//and iterate over their data attribute:
$.each($(this).data(), function(key, value) {
//do something with key and value here...
});
});

关于javascript - 使用 jquery 解析数据-*,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4357594/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com