如何在jstree中获取部分选定的父ID

时间:2017-05-16 15:50:17

标签: javascript treeview jstree

我正在使用" jstree" for treeview(Parent-Child)结构uisng复选框并返回每个所选项的id。但在这里,我只获得了孩子的身份,而没有获得选定的父ID。请帮助我也明白。

点击[enter code here http://jsfiddle.net/2kwkh2uL/5807/]查找代码。

1 个答案:

答案 0 :(得分:1)

每个对象都带有一个名为parent的密钥,其中包含id。答案如下:

$('#container').jstree({
    'core' : {
        'data' : [
            { "text" : "P1", "children" : [
                { "text" : "O11" },
                { "text" : "O12" },
                { "text" : "O13"}     
            ]
            },
             { "text" : "P2", "children" : [
                { "text" : "O21" },
                { "text" : "O22" },
                { "text" : "O23"}     
            ]
            },
        ]
    },
    "plugins" : ["checkbox"]
});
$('#submitdiv').show();
		$('#submit').click(function(){
			var selectedElmsIds = [];
			var selectedElms = $('#container').jstree("get_selected", true);
			$.each(selectedElms, function() {
			    selectedElmsIds.push(
          {
            id: this.id,
            parent: this.parent
          }
         );
			    console.log('Id node: '+this.id);
			    console.log('Id parent: '+this.parent);
			});
			console.log(JSON.stringify(selectedElmsIds));
		});
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.1.1/jquery.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jstree/3.3.3/jstree.min.js"></script>
<link rel="stylesheet" type="text/css" href="https://cdnjs.cloudflare.com/ajax/libs/jstree/3.3.3/themes/default/style.min.css">

<div id="container"></div>
  <div id="submitdiv" style="display:none;position:absolute">
  <button id="submit">submit</button>
</div>

Espero haberte ayudado,saludos。

PS:我为我糟糕的英语道歉,我说西班牙语,我正在使用谷歌翻译。