我在大模式下使用JQuery TreeView我想要删除除root之外的所有项目 我如何更改jquery.treeview.js来执行此操作?
答案 0 :(得分:3)
$("#navigation").treeview({collapsed:true}).find('div.hitarea:first').click();
greez AY
答案 1 :(得分:0)
只需执行以下操作即可:
$("#navigation").treeview({
collapsed: true,
unique: true,
"expanded": true,
persist: "location"
})
.find('div.hitarea:first')
.click();