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 回答