From 21d72c4a80fe2937d0c4ddd20624b27adbcd989b Mon Sep 17 00:00:00 2001 From: lizi00164331 Date: Mon, 7 Aug 2017 11:39:39 +0800 Subject: Upload the ESR GUI seed code Issue-ID: AAI-68 Change-Id: Ia50ce0570c2fabecd77199d4e8454f56fe587c4e Signed-off-by: lizi00164331 --- .../zTree/api/cn/treeNode.getNextNode.html | 27 ++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 common/src/main/webapp/thirdparty/zTree/api/cn/treeNode.getNextNode.html (limited to 'common/src/main/webapp/thirdparty/zTree/api/cn/treeNode.getNextNode.html') diff --git a/common/src/main/webapp/thirdparty/zTree/api/cn/treeNode.getNextNode.html b/common/src/main/webapp/thirdparty/zTree/api/cn/treeNode.getNextNode.html new file mode 100644 index 0000000..7a0fa5c --- /dev/null +++ b/common/src/main/webapp/thirdparty/zTree/api/cn/treeNode.getNextNode.html @@ -0,0 +1,27 @@ +
+
+

Function()treeNode.getNextNode

+

概述[ 依赖 jquery.ztree.core 核心 js ]

+
+

+
+

获取与 treeNode 节点相邻的后一个节点。

+

初始化节点数据时,由 zTree 增加此属性,请勿提前赋值

+
+
+

Function 参数说明

+
+

返回值JSON

+

与 treeNode 节点相邻的后一个节点。

+

如果 treeNode 是最后一个节点,返回 null 。

+
+

treeNode 举例

+

1. 获取当前被选中的节点的下一个节点

+
var treeObj = $.fn.zTree.getZTreeObj("tree");
+var sNodes = treeObj.getSelectedNodes();
+if (sNodes.length > 0) {
+	var node = sNodes[0].getNextNode();
+}
+
+
+
\ No newline at end of file -- cgit 1.2.3-korg