首先发布在这里。
创建了一个新的jstree节点并使用对话框收集其他信息后,我正在尝试对其他兄弟节点的属性进行一些验证。但我无法弄清楚如何最好地循环兄弟姐妹
// get the list of children of the parent
var siblings = $.jstree._reference(data.rslt.parent)._get_children("li");
这将返回十个预期孩子的数组,但我无法透过它们查看!
siblings[0] // has no attr() method.
我如何最好地循环兄弟姐妹?