我正在使用带有 Jstree 的 MVC c# asp.net 4.0 项目,但我有一个小问题,我有一个填充了 JSON 数组的 jstree。
我的问题是当在我的视图中检查到 div 时,我需要捕获 jstree 中复选框的值。
我正在使用带有 Jstree 的 MVC c# asp.net 4.0 项目,但我有一个小问题,我有一个填充了 JSON 数组的 jstree。
我的问题是当在我的视图中检查到 div 时,我需要捕获 jstree 中复选框的值。
好的,我终于得到了这个工作这是我希望它帮助某人的解决方案:)
首先你必须绑定:
.bind('check_node.jstree', function (e, data) {
$("#listSelectedActives").html(BuildList());
})
.bind('uncheck_node.jstree', function (e, data) {
$("#listSelectedActives").html(BuildList());
然后使用此功能:
function BuildList() {
var checked = $("#demoTree").jstree("get_checked", null, true);
var output = "";
$(checked).each(function (i, node) {
var id = $(node).attr("ID");
var text = $(node).attr("NodeText");
output += "<p>ID: " + id + " TEXT: " + text + "</p>";
})
return output;
}
如果这太令人困惑,请告诉我:)