gpt4 book ai didi

javascript - 如何在没有清除jstree默认点击事件的情况下触发点击事件

转载 作者:行者123 更新时间:2023-11-30 06:48:35 25 4
gpt4 key购买 nike

使用 jstree,我使用下一个代码来触发点击,但是,我看不到默认的点击事件,例如:点击时的蓝色背景,

这是我的代码:

<div id="wrap">
<div id="header">header</div>
<div id="main">
<div id="demo1" style="float:left;width:50%;">
<ul>
<li>
<a id='a' href="">aaa</a>
<!-- UL node only needed for children - omit if there are no children -->
<ul>
<li><a id="a_1" href="#"> bbb</a></li>
<li><a id="a_2" href="#"> ccc</a></li>
</ul>
</li>
</ul>

</div>
<div id="content">www</div>
</div>
</div>

<div id="footer">
footer
</div>
<script type="text/javascript">
$(function () {
$("#demo1").jstree({
"themes": {
"theme": "default",
"dots": true,
"icons": true,
"url": "themes/default/style.css"
},

"plugins" : [ "themes", "html_data" ]
});
$('#a_1').click(function(){
$('#content').html('bbb \'s content')
//return false;
})
$('#a_2').click(function(){
$('#content').html('ccc \'s content')
//return false;
})
});
</script>

我找到了一些这样的代码:

.bind("create.jstree", function (e, data) {
alert(data)
})

它的意思是:当有人创建一个新文件时提醒数据,

所以

jstree 是否有类似“click.jstree”的方法?

谢谢

最佳答案

在事件方面你拥有的很好,你只是缺少一个插件......在新的 1.0 模型中,ui 位是一个单独的插件,如果你只是改变你的插件:

"plugins" : [ "themes", "html_data" ]

对此:

"plugins" : [ "themes", "html_data", "ui" ]

您将获得当前节点选择着色,you can give it a try here .

关于javascript - 如何在没有清除jstree默认点击事件的情况下触发点击事件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3552503/

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