$(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で可能ですか?