作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有一个类型为的 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/
我是一名优秀的程序员,十分优秀!