单击jstree节点时打开多个窗口

时间:2013-03-20 16:17:39

标签: javascript jquery jstree

$(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可以吗?

1 个答案:

答案 0 :(得分:2)

如下所示使用空参数。

window.open('new.html', '','width=800,height=1000,resizable=1,scrollbars=1');