使用jstree,我使用下一个代码触发点击,但是,我看不到defalut点击事件,如:点击时的蓝色背景,
这是我的代码:
<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”的方法吗?
感谢
答案 0 :(得分:0)
你在事件方面做得很好,你只是错过了一个插件......在新的1.0模型中,ui位是一个单独的插件,如果你只是改变你的插件:
"plugins" : [ "themes", "html_data" ]
对此:
"plugins" : [ "themes", "html_data", "ui" ]
您将获得当前节点选择着色you can give it a try here。