我想使用angularjs
.
这是小提琴。
该代码有效,但我的问题是:
当我尝试在 5 秒后添加新节点时,Jquery 方法不适用于添加的节点。所有其他工作正常。
这是我要调用的方法:
$(function () {
$('.tree li:has(ul)').addClass('parent_li').find(' > span').attr('title', 'Collapse this branch');
$('.tree li.parent_li > span').on('click', function (e) {
var children = $(this).parent('li.parent_li').find(' > ul > li');
if (children.is(":visible")) {
children.hide('fast');
$(this).attr('title', 'Expand this branch').find(' > i').addClass('icon-plus-sign').removeClass('icon-minus-sign');
} else {
children.show('fast');
$(this).attr('title', 'Collapse this branch').find(' > i').addClass('icon-minus-sign').removeClass('icon-plus-sign');
}
e.stopPropagation();
});
});
如何动态调用 Jquery 样式(添加/删除类)?
如果您想将 Fiddler 中的代码放到那里,请告诉我。
谢谢,
顺便说一下,这个例子会很有帮助(如何用 angularjs 构建树)