適用amazeui.tree版本:未知(截止到2018年10月)
Amaze UI Tree是Amaze框架的擴(kuò)展,優(yōu)點(diǎn)是風(fēng)格與Amaze框架一致,缺點(diǎn)是很不完善,為了能夠在項(xiàng)目中應(yīng)用,對其核心代碼做了修改(另文發(fā)表,不在此贅述)。其API中選定樹節(jié)點(diǎn)的函數(shù)多次嘗試未果,干脆重寫一個(gè)。如下:
//默認(rèn)展開折疊面板
$("#user-nav").collapse('open');
//默認(rèn)點(diǎn)擊第一個(gè)button
var btnArray = $(".am-tree-branch-name.click-item");
btnArray.each(function(i){
//console.log($(this).html());
if ( i == 1 ) {
$(this).click(function(){
$(".click-item").removeClass("am-tree-icon");
$(".click-item").removeClass("am-icon-check");
$(this).addClass("am-tree-icon");
$(this).addClass("am-icon-check");
var obj = new Object();
obj.title = $(this).attr("data.title");
obj.level = $(this).attr("data.level");
$(this).trigger('tree-click', {
data: obj
});
});
$(this).trigger('click');
}
});
到此這篇關(guān)于amazeui樹節(jié)點(diǎn)自動(dòng)展開折疊面板并選中第一個(gè)樹節(jié)點(diǎn)的實(shí)現(xiàn)的文章就介紹到這了,更多相關(guān)amazeui樹節(jié)點(diǎn)內(nèi)容請搜索腳本之家以前的文章或繼續(xù)瀏覽下面的相關(guān)文章,希望大家以后多多支持腳本之家!