0
$(document).ready(function(){
     $("#tree").jstree({  
         "xml_data" : {  
             "ajax" : {  
                 "url" : "jstree.xml"            
             },  

             "xsl" : "nest"

             },  
    "themes" : {  

             "theme" : "classic",  

            "dots" : true,  

             "icons" : true 

         },  
          "ui": {
            "initially_select" : [ "#1234" ] 
       },
    "search" : {  

              "case_insensitive" : true,  

                 "ajax" : {  

                     "url" : "tree.xml" 

                 }  

             }, 
    "plugins" : ["themes", "xml_data", "ui","types", "search", "cookies"],
    "core" : { "initially_open" : [ "12345" ] } 
    }).bind("select_node.jstree", function (event, data) {
            var node_id = data.rslt.obj.attr("id");
            $.cookie("example", node_id, { path: '/', expires:7 });
            window.open('new.html', '_newtab','width=800,height=1000,resizable=1,scrollbars=1');

    });

jstreeを使用してツリーにデータを入力しようとしています。ノードをクリックすると、Cookieを使用してnew.htmlという新しいウィンドウを起動し、ノードIDの値を保存する必要があります。できます。ただし、必要なのは、jstreeノードをクリックしたときに、新しいnew.htmlウィンドウが必要であり、new.htmlを更新するのではなく、別のノードをクリックした場合、新しいnode_idを持つ別のウィンドウが必要です。したがって、new.htmlを使用してnode_idごとに複数のウィンドウが必要です。これはjqueryで可能ですか?

4

1 に答える 1

2

以下のように空の引数を使用すると、トリックが実行されます。

window.open('new.html', '','width=800,height=1000,resizable=1,scrollbars=1');
于 2013-03-20T16:31:49.317 に答える