dijit.Tree(1)——点击节点时执行一些定制操作

前端之家收集整理的这篇文章主要介绍了dijit.Tree(1)——点击节点时执行一些定制操作前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
var tree = new Tree({
	model: model,//openOnClick:true,persist: false
},"divTree"); 
tree.startup();

tree.on("click",function(object){
        alert(object.id+':'+object.name);
	// 执行一些其他操作
});
原文链接:https://www.f2er.com/dojo/291413.html

猜你在找的Dojo相关文章