这是我处理这个问题的最后手段。
问题是我无法从下面的示例数据中获取具体值。
我很着急,所以如果你能给我这个问题的任何答案,我将不胜感激。
这是我的代码。
$("#organize").jstree(
{
"core": {'animation': 100},
"json_data": {
"data": [
{
"data": "J",
"id": "10600_10600",
"metadata": {
"id": "10600_10600",
"name": "10600_10600"
}
}]
},
"themes": {
"theme": "classic",
"url": "<%=request.getContextPath()%>/approval/css/jstree.css"
},
"plugins": ["themes", "json_data", "ui"]
}).bind("dblclick.jstree", function (e)
{
alert($('#organize').jstree('get_selected').attr('id'));
////////////TODO: Can not get ID here/////////////////
});
$('#add').click(function ()
{
//HERE I can get 'name' of the selected node but 'id' is undefined.
var name = $("#organize").jstree('get_selected').text();
var id = $("#organize").jstree('get_selected').attr('data');
});