有谁知道如何在jstree中设置链接节点的href url?
今天是href="#"
。
答案 0 :(得分:0)
$("your-link-selector").attr("href","new-url-you-want");
答案 1 :(得分:0)
您必须进一步澄清,您希望对jstree应用哪种更改。 jstree中的锚点是不真正的锚点,它们用于更改网页地址的共同目的,但仅仅是javascript“click”事件的诱饵,因此可以执行各种树操作。
答案 2 :(得分:0)
简单,只需将数据键更改为对象:
// `data` can also be an object
"data" : {
"title" : "The node title",
// omit when not needed
"attr" : {},
// if `icon` contains a slash / it is treated as a file, used for background
// otherwise - it is added as a class to the <ins> node
"icon" : "folder"
},