标签: jquery fancytree
我使用排序插件。当我将element1移动到其他element2时,我需要迭代element2的所有兄弟。我怎样才能做到这一点? 此外,我需要为每个元素获取一些自定义数据属性。
答案 0 :(得分:2)
这样的事情(未经测试)应该可以解决问题:
node.getParent().visit(function(n){ // Access n.data.myAttr ... });
或简单地遍历node.getParent().children数组。
node.getParent().children