需要一点帮助:我正在使用 jquery treeview 插件(这个:http ://bassistance.de/jquery-plugins/jquery-plugin-treeview/ )。我想突出显示当前项目。我是这样做的:
CSS:
.filetree li .clicked {
font-weight: bold;
}
和JS代码:
$('li').live('click', function(event){
event.stopPropagation();
console.log(this.id);
$('.clicked').removeClass('clicked');
$(this).addClass('clicked');
return false;
});
一切正常,但所有项目与其子元素一起突出显示,并且根元素没有整体突出显示。
如何仅突出显示当前项目?提前致谢!