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 に答える