如何在jsTree中获取所选节点的ID?
如何在jsTree中获取所选节点的ID?
function createNewNode() { alert('test'); var tree = $.tree.reference("#basic_html"); selectedNodeId = xxxxxxxxx; //insert instruction to get id here tree.create({ data : "New Node Name" }, selectedNodeId); }
jsTree中的节点基本上是包装列表项。 这将为您提供第一个参考。
var n = $.tree.focused().get_node('li:eq(0)')
如果您对树有引用,则可以替换$.tree.focused()
。
要获取id,请使用第一个匹配的元素
if (n.length) id = n[0].id
或者您可以使用jQuery attr函数,该函数适用于集合中的第一个元素
id = n.attr('id');
由于无法使用harpo的解决方案,并且不愿意使用Olivier的解决方案,因为它使用了内部的jsTree函数,我提出了一种不同的方法。
$('#tree').jstree('get_selected').attr('id')
就这么简单。 get_selected
函数返回所选列表项的数组。 如果你对该数组执行.attr
,jQuery将查看列表中的第一项。 如果您需要多个选择的ID,请将其视为数组。
在jstree
3.1.1
版中,您可以直接从get_selected
获取它:
$("#").jstree("get_selected")
$.jstree._reference('#my_tree_container')._get_node(null, true).each(function() { id = $(this).attr("id"); alert('Id selected: ' + id); });
在最新版本的jsTree(在3.3.3中检查)中,您可以执行此操作以获取ID数组:
var ids = $('#tree').jstree('get_selected');
这将返回,例如, ["selected_id1", "selected_id2", "selected_id3"]
。 如果要获取所选节点 (而不是ID),可以执行以下操作:
var nodes = $('#tree').jstree('get_selected', true);
当前的文档包含更多信息。
我在使用MULTIPLE选择从树中获取所选ID时遇到问题。 这是我得到它们的方式:
var checked_ids = []; $("#your-tree-id").jstree('get_selected').each(function(){ checked_ids.push($(this).data('id')); });
就我而言,数据调用不起作用。 我通过使用attr函数成功访问了我的节点数据。
$("#tree").jstree("get_selected").attr("my-data-name");
获取所有选定的ID使用以下代码
var selectedData = []; var selectedIndexes; selectedIndexes = $("#jstree").jstree("get_selected", true); jQuery.each(selectedIndexes, function (index, value) { selectedData.push(selectedIndexes[index].id); });
现在,您在“selectedData”变量中拥有所有选定的ID
随着Jstree的最新版本; 你可以这样做: