gpt4 book ai didi

javascript - 如何在 JSON 对象中向 JStree 插件的子级添加 href 链接?

转载 作者:行者123 更新时间:2023-12-02 22:35:08 25 4
gpt4 key购买 nike

我有一个类型为的 JSON 对象:

ID |家长 |文字|链接。

我想在我的树结构中添加一个指向每个子项的 HREF 链接。

我的 JSON 示例:

var data = [
{ 'id': '1', 'parent': '#', 'text': 'Greater London', "href" : "#" },
{ 'id': '11', 'parent': '1', 'text': 'Goldsmiths College', 'href': 'http://tf1.fr' },
]

//The tree
$(function () {
$proceduresTree.jstree({
'core': {
'data': data,

"themes": {
"icons": true
}
},
'search': {
'show_only_matches': true,
'show_only_matches_children': true
},
"plugins": ["search", "checkbox"]
});

var to = false;
$('#search').keyup(function () {
if (to) { clearTimeout(to); }
to = setTimeout(function () {
var v = $('#search').val();
$proceduresTree.jstree(true).search(v);
}, 250);
});
});

最佳答案

请按如下方式对齐您的 JSON:

var data = [
{ 'id': '1', 'parent': '#', 'text': 'Greater London', 'a_attr':{href: '#'} },
{ 'id': '11', 'parent': '1', 'text': 'Goldsmiths College', 'a_attr':{href: 'http://tf1.fr'} }
]

a_attr中添加的任何属性,都会出现在 anchor 标记中。

关于javascript - 如何在 JSON 对象中向 JStree 插件的子级添加 href 链接?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58768315/

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