3

未选中时,我需要检索节点的 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);
            }
        });
4

1 回答 1

2
.bind("change_state.jstree", function (e, data) {
    if (data.args[1] == true) {
        var a = $(data.rslt).attr('id');
        alert(a);
    }
})
于 2012-07-30T07:48:02.170 回答