0

私は、checked_idであるinitial_selectとopenに動的な値を使用しています。checked_id に'"skillTree_1576","skillTree_1573"'値を割り当てましたが、機能していません...同じ値を静的に渡すと、正常に機能します....以下はソースコードです

$("#"+node_id+"Edit").live("click", function(){
            $('#'+node_id+'Lookup').show(); 
            $('#'+node_id+'Values').hide(); 
            $("#"+node_id).bind("check_node.jstree", function (e, data) {//check all parent nodes
                var currentNode = data.rslt.obj.attr("id");
                var parentNode =  data.rslt.obj.attr("parent_id");
        $("#"+node_id).jstree("check_node", "#"+parentNode);
            }).bind("uncheck_node.jstree", function (e, data) {//uncheck all child nodes
                var currentNode = data.rslt.obj.attr("id");
                var allChildNodes = data.inst._get_children(data.rslt.obj);
        allChildNodes.each(function(idx, listItem) { 
        var nid = $(listItem).attr("id");
        $("#"+node_id).jstree("uncheck_node", "#" + nid);
            });
        }).jstree({"0":"","plugins":["themes","json_data","ui","search","hotkeys","checkbox"],"checkbox":{
                "real_checkboxes":true,"two_state":true,"checked_parent_open":true,"override_ui":true
            },"themes":{"theme":"classic","dots":true,"icons":false},"json_data":{
                "ajax":{"url":baseUrl+url,"data":function (n) { 
                        return {'node_name': node_id, 'operation' : 'lookup_children', 'id' : n.attr ? n.attr('id').replace(/[a-z0-9A-Z]+_/g,'') : 0 }; 
                        $('#'+node_id+'emptySearch').hide(); },"success":function(){}}},"search":{
                        "show_only_matches":false,"ajax":{
                            "url":baseUrl+url,"data":function (str) {if(str.length > 2 ) { 
                                    return {'node_name': node_id, 'operation' : 'search', 'search_str' : str}; } },"success":function (data) {
                                if(data.length == 0) { $('#'+node_id+'emptySearch').show(); 
                                } else {    
                                    $('#'+node_id+'emptySearch').hide();}}}},"ui":{"initially_select":[checked_id] },"core":{
                                    "initially_open":[checked_id],"load_open":true,"open_parents":true}});
                           // alert ('hello : '+checked_id);
                        });

誰かがそれについて考えているなら、私を助けてください..事前に感謝します

4

1 に答える 1

0

複数の ID を選択するには、次のように使用できます。

 $("input[id^='skillTree_']")....

^定義文字列で開始するために使用されます。

参照

于 2013-10-03T06:07:48.770 に答える