gpt4 book ai didi

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

转载 作者:行者123 更新时间:2023-12-02 18:54:22 26 4
gpt4 key购买 nike

$(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 实现吗?

最佳答案

使用如下所示的空参数即可解决问题。

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

关于javascript - 单击 jstree 节点时打开多个窗口,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15529050/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com