Easy UI動(dòng)態(tài)樹點(diǎn)擊文字實(shí)現(xiàn)展開關(guān)閉功能
來源:懂視網(wǎng)
責(zé)編:小采
時(shí)間:2020-11-27 22:28:24
Easy UI動(dòng)態(tài)樹點(diǎn)擊文字實(shí)現(xiàn)展開關(guān)閉功能
Easy UI動(dòng)態(tài)樹點(diǎn)擊文字實(shí)現(xiàn)展開關(guān)閉功能:只需要在JSP處,點(diǎn)擊樹的函數(shù)中,添加一段代碼即可: 整體如下: <span style=white-space:pre> </span>$(#tt).tree({ onClick: function(node){ if(node.url != null){ parent.frames[cont
導(dǎo)讀Easy UI動(dòng)態(tài)樹點(diǎn)擊文字實(shí)現(xiàn)展開關(guān)閉功能:只需要在JSP處,點(diǎn)擊樹的函數(shù)中,添加一段代碼即可: 整體如下: <span style=white-space:pre> </span>$(#tt).tree({ onClick: function(node){ if(node.url != null){ parent.frames[cont
只需要在JSP處,點(diǎn)擊樹的函數(shù)中,添加一段代碼即可:
整體如下:
<span style="white-space:pre"> </span>$("#tt").tree({
onClick: function(node){
if(node.url != null){
parent.frames["content"].location.href="${ctx}" rel="external nofollow" + node.url;
}else{
if(node.state=='closed'&&(!$("#tree").tree('isLeaf',node.target))){ //狀態(tài)為關(guān)閉而且非葉子節(jié)點(diǎn)
$(this).tree('expand',node.target);//點(diǎn)擊文字展開菜單
}else{
$(this).tree('collapse',node.target);
}
}
}
})
總結(jié)
以上所述是小編給大家介紹的Easy UI動(dòng)態(tài)樹點(diǎn)擊文字實(shí)現(xiàn)展開關(guān)閉,希望對(duì)大家有所幫助,如果大家有任何疑問請(qǐng)給我留言,小編會(huì)及時(shí)回復(fù)大家的。在此也非常感謝大家對(duì)腳本之家網(wǎng)站的支持!
聲明:本網(wǎng)頁內(nèi)容旨在傳播知識(shí),若有侵權(quán)等問題請(qǐng)及時(shí)與本網(wǎng)聯(lián)系,我們將在第一時(shí)間刪除處理。TEL:177 7030 7066 E-MAIL:11247931@qq.com
Easy UI動(dòng)態(tài)樹點(diǎn)擊文字實(shí)現(xiàn)展開關(guān)閉功能
Easy UI動(dòng)態(tài)樹點(diǎn)擊文字實(shí)現(xiàn)展開關(guān)閉功能:只需要在JSP處,點(diǎn)擊樹的函數(shù)中,添加一段代碼即可: 整體如下: <span style=white-space:pre> </span>$(#tt).tree({ onClick: function(node){ if(node.url != null){ parent.frames[cont