首页 > 代码库 > jstree高级使用,获取所有选中的值并且所有待选的父级结点值
jstree高级使用,获取所有选中的值并且所有待选的父级结点值
var tree = $("#jstree").jstree({ "core": { "themes": { "responsive": false }, "check_callback": true, ‘data‘: { ‘url‘: function (node) { return ‘/test/jstreejson‘; }, ‘data‘: function (node) { return { ‘parent‘: 1000 }; } } }, "types": { "default": { "icon": "fa fa-folder icon-state-warning icon-lg" }, "file": { "icon": "fa fa-file icon-state-warning icon-lg" } }, //"state": { "key": "demo3" }, ‘plugins‘: [ "checkbox", "types"] }).on("changed.jstree", function (e, data) { //改变事件 }).bind("select_node.jstree", function (e, data) { //选中事件 }); //获取所有选中的值,并且获取待选的父级值 function ttt() { var idArray = new Array(); $("#jstree").find(".jstree-checked, .jstree-undetermined ").each(function () { idArray.push($(this).closest(‘li‘).attr("id")); }); idArray = idArray.concat($.jstree.reference($("#jstree")).get_selected()); alert(idArray.join(‘,‘)); }
做网站,做软件可以找天马网站建设http://www.tmddd.com/
jstree高级使用,获取所有选中的值并且所有待选的父级结点值
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。