bootstrap框架中的树结构有没有制定的选中功能
$('.jstree_all').jstree({
'core': {
'check_callback': true
},
'plugins': ['types', 'dnd', "checkbox"],
'checkbox': {
'keep_selected_style': true, //是否默认选中
'three_state': true, //父子级别级联选择
'tie_selection': true
},
'types': {
'default': {
'icon': 'fa fa-folder'
}
}
}).on('loaded.jstree', function(e, data) { //默认全选
// var inst = data.instance;
var inst = $('#jstree_gly').jstree(true);
var obj = inst.get_node(e.target.firstChild.firstChild.lastChild);
inst.select_node(obj);
});
求大神帮忙