gpt4 book ai didi

jquery - 我如何从数据属性中获取其中一个值

转载 作者:行者123 更新时间:2023-12-01 02:55:36 27 4
gpt4 key购买 nike

我有一个具有多个值的数据属性。我如何从中获得一个值?

<div data-url='{"header-url" : "src/one.html","footer-url" : "src/two.html","content-url" : "src/three.html"}'></div>

$(document).ready(function() {
var headerContent = $('div').attr('data-url');
console.log(headerContent)
});

http://jsfiddle.net/taGBL/19/

最佳答案

使用括号表示法

$(document).ready(function() {

var headerContent = $('div').data('url');

console.log(headerContent['header-url']);
console.log(headerContent['footer-url']);
console.log(headerContent['content-url']);

});

Fiddle

关于jquery - 我如何从数据属性中获取其中一个值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23467063/

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