溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊(cè)×
其他方式登錄
點(diǎn)擊 登錄注冊(cè) 即表示同意《億速云用戶服務(wù)條款》

JQuery ligerUI ligerTree 基本使用方法

發(fā)布時(shí)間:2020-04-23 06:03:22 來源:網(wǎng)絡(luò) 閱讀:5867 作者:mybabe0312 欄目:web開發(fā)

首先引入相應(yīng)的ligerUI的css和js文件

1,html

 <ul id="tree"></ul>

2,初始化

var treeData = [
                { 'name': '節(jié)點(diǎn)1', 'no':1 , 'children': [
                    { 'name': '節(jié)點(diǎn)1.1','no':1 },
                    { 'name': '節(jié)點(diǎn)1.2','no':2 },
                    { 'name': '節(jié)點(diǎn)1.3', 'children': [
                          { 'name': '節(jié)點(diǎn)1.3.1' },
                          { 'name': '節(jié)點(diǎn)1.3.2' }
                     ]},
                    { 'name': '節(jié)點(diǎn)1.4' }
                 ]
                },
                { 'name': '節(jié)點(diǎn)2' }
            ];

$("#tree").ligerTree({
                 checkbox: false,
                 parentIcon: null,
                 childIcon: null ,
                 slide: false, //是否顯示動(dòng)畫
                 nodeWidth: 100,
                 idFieldName: 'id',
                 textFieldName:'name' , //指定數(shù)據(jù)中要顯示的屬性名,默認(rèn)為"text"
                 data: treeData,
                 onSelect: function (node)
                 {
                     if (!node.data.name) {
                      return
                     };
                     //處理導(dǎo)航樹的點(diǎn)擊事件TODO
                     
                 }
             });
var tree = $("#tree").ligerGetTreeManager();

//tree.setData(treeData) ;   //或者這樣設(shè)值

運(yùn)行結(jié)果:

JQuery ligerUI ligerTree 基本使用方法

向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI