jQuery MiniUI 開發教程 樹形控件 創建樹:列表結構(二)

                              
參考示例: 列表數據生成Tree

                      
創建Tree          

<ul id="tree1" class="mini-tree" url="../data/listTree.txt" style="width:200px;padding:5px;"
    showTreeIcon="true" textField="text" idField="id" parentField="pid" resultAsTree="false" 
    >
</ul>         
註意:idField、parentField、resultAsTree屬性。

       
          
數據結構:列表         

通過url返回的數據結構如下:

[
    {id: "base", text: "Base", expanded: false},   
    {id: "ajax", text: "Ajax", pid: "base"},
    {id: "json", text: "JSON", pid: "base"},
    ……
]
其中,id和pid對應父子關系。

發佈留言

發佈留言必須填寫的電子郵件地址不會公開。 必填欄位標示為 *