gpt4 book ai didi

javascript - jstree 使用 html 将按钮添加到节点并使用上下文菜单重命名

转载 作者:行者123 更新时间:2023-12-03 02:34:44 25 4
gpt4 key购买 nike

我想向节点添加按钮。我有 jstree 节点。它的名称是:node.text = "Books" 。然后我将按钮添加到节点名称,如下所示 node.text = "<button>Search</button>"+node.text 。它显示带有名称的按钮。但有问题。当我想重命名该节点时,它还显示按钮 html。我怎么解决这个问题?

Picture here

最佳答案

也许有更好的方法,但由于标签始终相同,您可以格式化 html 标签和内容

var d =  [{
"id": "p1",
"parent": "#",
"text": "Parent-1"
}, {
"id": "p2",
"parent": "#",
"text": "Parent-2"
}, {
"id": "c1",
"parent": "p2",
"text": "Child 1"
}, {
"id": "c2",
"parent": "p2",
"text": "Child 2"
}, ];

$("#tree")
.jstree({
"core" : {
"data" : d,
"check_callback": true
}
});

/* after the load of the tree but choose your event */
$("#tree").on("loaded.jstree", function(){
var select = document.getElementById("p2").getElementsByTagName("a")[0];
var copy = select.getElementsByTagName("i")[0];
var copyt = select.textContent;
select.innerHTML= "";
var btn = document.createElement("BUTTON");
var t = document.createTextNode("CLICK ME");
btn.appendChild(t);
select.appendChild(copy);
select.appendChild(btn);
select.appendChild(document.createTextNode(copyt));
});
<html>
<head>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jstree/3.3.5/jstree.min.js"></script>
<link href="https://static.jstree.com/3.2.1/assets/dist/themes/default/style.min.css" rel="stylesheet">
</head>
<body>
<div id="tree"></div>
</body>
</html>

关于javascript - jstree 使用 html 将按钮添加到节点并使用上下文菜单重命名,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48584885/

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