未选中时,我需要检索节点的 ID。在表单提交时,以下代码返回所选节点的所有 id
checkbox: {
                real_checkboxes: true,
                two_state: true,
                real_checkboxes_names: function (n) {
                    return [("check_" + (n[0].id)), n[0].id]
                }
            }
但是对于我的需要,当节点未选中时,我需要 id
}).bind('uncheck_node.jstree',function(e,data){
            {     
                var a=$(e).attr('id');               
                alert(a);
            }
        });