第一次在这里发帖。
创建了一个新的 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.
我如何最好地循环兄弟姐妹?