jquery easyui菜單樹顯示

来源:http://www.cnblogs.com/roucheng/archive/2016/01/30/shuxingcaidan.html
-Advertisement-
Play Games

目前做了一個easyui項目需要顯示多級菜單,菜單配置到資料庫中,因此每級菜單都需要到資料庫中取,用了jQuery EasyUI方便多了。 效果體驗:http://hovertree.com/texiao/jeasyui/2/下載:http://hovertree.com/h/bjaf/kbtdmn


目前做了一個easyui項目需要顯示多級菜單,菜單配置到資料庫中,因此每級菜單都需要到資料庫中取,用了jQuery EasyUI方便多了。

效果體驗:http://hovertree.com/texiao/jeasyui/2/

下載:http://hovertree.com/h/bjaf/kbtdmn5u.htm

參考:http://hovertree.com/jeasyui/demo/tree/checkbox.html

http://hovertree.com/jeasyui/demo/tree/dnd.html

HTML代碼:

 1 <!DOCTYPE html>
 2 <html>
 3 <head>
 4     <meta charset="UTF-8">
 5     <title>樹菜單操作 - jQuery EasyUI 範例 - 何問起</title><base target="_blank" />
 6     <link rel="stylesheet" type="text/css" href="http://hovertree.com/jeasyui/themes/default/easyui.css">
 7     <link rel="stylesheet" type="text/css" href="http://hovertree.com/jeasyui/themes/icon.css">
 8     <link rel="stylesheet" type="text/css" href="http://hovertree.com/jeasyui/demo/demo.css">
 9     <script type="text/javascript" src="http://hovertree.com/ziyuan/jquery/jquery-1.12.0.min.js"></script>
10     <script type="text/javascript" src="http://hovertree.com/jeasyui/jquery.easyui.min.js"></script>
11     <style>a{color:black;text-decoration:none;}</style>
12 </head>
13 <body>
14     <h2>樹菜單操作</h2>
15     <p>點擊下列按鈕體驗效果.</p>
16     <div style="margin:20px 0;">
17         <a href="javascript:;" class="easyui-linkbutton" onclick="collapseAll()" target="_self">全部收起</a>
18         <a href="javascript:;" class="easyui-linkbutton" onclick="expandAll()" target="_self">全部展開</a>
19         <a href="javascript:;" class="easyui-linkbutton" onclick="expandTo()" target="_self">展開選擇指定項</a>
20         <a href="javascript:;" class="easyui-linkbutton" onclick="getSelected()" target="_self">獲取選擇項值</a>
21     </div>
22     <div class="easyui-panel" style="padding:5px">
23         <ul id="tt" class="easyui-tree" data-options="url:'tree_data1.json',method:'get',animate:true"></ul>
24     </div>
25     <br /><br />
26     <a href="http://hovertree.com/">首頁</a>
27     <script type="text/javascript">
28         function collapseAll(){
29             $('#tt').tree('collapseAll');
30         }
31         function expandAll(){
32             $('#tt').tree('expandAll');
33         }
34         function expandTo(){
35             var node = $('#tt').tree('find',113);
36             $('#tt').tree('expandTo', node.target).tree('select', node.target);
37         }
38         function getSelected(){
39             var node = $('#tt').tree('getSelected');
40             if (node){
41                 var s = node.text;
42                 if (node.attributes){
43                     s += ","+node.attributes.p1+","+node.attributes.p2;
44                 }
45                 alert(s);
46             }
47         }
48     </script>
49 </body>
50 </html>

菜單項的json文件代碼:

[
{
"id": 1,
"text": "Tree菜單",
"children": [
{
"id": 11,
"text": "Photos",
"state": "closed",
"children": [
{
"id": 111,
"text": "<a href='http://hovertree.com'>何問起</a>"
},
{
"id": 112,
"text": "<a href='http://hovertree.com/jeasyui/'>EasyUI</a>"
},
{
"id": 113,
"text": "<a href='http://hovertree.com/menu/jquery/'>jQuery</a>"
}
]
},
{
"id": 12,
"text": "Program Files",
"children": [
{
"id": 121,
"text": "<a href='http://hovertree.com/h/bjaf/hoverclock.htm'>HoverClock</a>"
},
{
"id": 122,
"text": "<a href='http://hovertree.com/h/bjaf/easysector.htm'>畫餅圖</a>",
"attributes": {
"p1": "Custom Attribute1",
"p2": "Custom Attribute2"
}
},
{
"id": 123,
"text": "<a href='http://hovertree.com/h/bjaf/hovertreebatch.htm'>批量重命名</a>"
},
{
"id": 124,
"text": "<a href='http://tool.hovertree.com/a/base64/'>圖像轉碼</a>",
"checked": true
}
]
},
{
"id": 13,
"text": "<a href='http://hovertree.com/texiao/game/'>見縫插針</a>"
},
{
"id": 14,
"text": "<a href='http://hovertree.com/shortanswer/bjaf/j43wyyvr.htm'>選擇題</a>"
},
{
"id": 15,
"text": "<a href='http://hovertree.com/h/bjaf/css3icon.htm'>圖標</a>"
},
{
"id": 16,
"text": "<a href='http://hovertree.com/h/bjaf/treeaction.htm'>原文</a>"
}
]
}
]

更多特效:http://www.cnblogs.com/roucheng/p/texiao.html


您的分享是我們最大的動力!

-Advertisement-
Play Games
更多相關文章
  • 1.malloc (1)malloc分配函數:需要給出申請空間大小(以位元組為單位) (2)返回值是一個首地址,用指針接收 (3)使用sizeof計算元素大小 (4)使用malloc函數申請記憶體空間,用完後需要釋放,否則會造成記憶體泄露 (5)釋放函數free需要指向分配記憶體的指針 (6)基本形式:vo
  • 下載jdk-8u71-linux-x64.tar.gz 創建jvm文件夾(/usr/lib/jvm) sudo mkdir /usr/lib/jvm 創建jvm文件夾(/usr/lib/jvm) sudo tar zxvf jdk-8u71-linux-x64.tar.gz -C /usr/lib/
  • Java EE架構一般包含以下幾層: 1、領域對象(Domain Object)層:該層主要是由抽象的對象模型組成(也稱POJO,Plain Old Java Object 普通的、傳統的Java對象),一般包含了各自所需要的業務邏輯方法,通常這些對象模型的狀態要保存在資料庫中,以提供持久化支持;
  • 1,準備工作: windows下虛擬機上安裝centos7,下載putty工具。 2,windows下下載相關的安裝包 jdk-8u71-linux-x64.rpm kafka_2.11-0.9.0.0.tgz zookeeper-3.4.6.tar.gz 3,通過putty的pscp工具將上述3個
  • 工廠顧名思義就是生產商品的,造紙廠生產紙,鞋廠生產鞋,在面向對象的編程思想中,那麼我們這裡設計模式中的簡單工廠就是為我們生產對象的。 在介紹簡單工廠模式之前,我們先來瞭解一下怎麼生產一個商品,以生產筆記本為例,我們怎麼讓一個筆記本生產出來呢,最簡單的方式,就是我們通過實例化的方式,就能產生一個筆記本
  • 2.14 pluck 2.14.1 語法: _.pluck(list, key) 2.14.2 說明: pluck方法根據key對list數組中的每個對象進行檢索,返回檢索成功的屬性值,否則返回undefined,返回一個數組 list為數組和arguments(數組中需要是對象類似:{x: 1})
  • 這章本來準備寫成jQuery的表單操作和表格操作的。 然而昨天吧jQuery的表單操作看完,發現全部在炒之前章節的剩飯,所以就沒寫出來。 那麼今天就來看看表格吧。 因為平常做的都是公司的內部管理系統,所以說數據表格用到的還是比較多的。那麼在這裡寫出來說不定還能用上。 關於jQuery的表格應用 隔行
  • 本文同步至微信公眾號:http://mp.weixin.qq.com/s?__biz=MzAxMzgwNDU3Mg==&mid=401616238&idx=1&sn=3c6e965283c632e9035875be43e6a305&scene=0#wechat_redirect 二維碼: 一直覺得c
一周排行
    -Advertisement-
    Play Games
  • 移動開發(一):使用.NET MAUI開發第一個安卓APP 對於工作多年的C#程式員來說,近來想嘗試開發一款安卓APP,考慮了很久最終選擇使用.NET MAUI這個微軟官方的框架來嘗試體驗開發安卓APP,畢竟是使用Visual Studio開發工具,使用起來也比較的順手,結合微軟官方的教程進行了安卓 ...
  • 前言 QuestPDF 是一個開源 .NET 庫,用於生成 PDF 文檔。使用了C# Fluent API方式可簡化開發、減少錯誤並提高工作效率。利用它可以輕鬆生成 PDF 報告、發票、導出文件等。 項目介紹 QuestPDF 是一個革命性的開源 .NET 庫,它徹底改變了我們生成 PDF 文檔的方 ...
  • 項目地址 項目後端地址: https://github.com/ZyPLJ/ZYTteeHole 項目前端頁面地址: ZyPLJ/TreeHoleVue (github.com) https://github.com/ZyPLJ/TreeHoleVue 目前項目測試訪問地址: http://tree ...
  • 話不多說,直接開乾 一.下載 1.官方鏈接下載: https://www.microsoft.com/zh-cn/sql-server/sql-server-downloads 2.在下載目錄中找到下麵這個小的安裝包 SQL2022-SSEI-Dev.exe,運行開始下載SQL server; 二. ...
  • 前言 隨著物聯網(IoT)技術的迅猛發展,MQTT(消息隊列遙測傳輸)協議憑藉其輕量級和高效性,已成為眾多物聯網應用的首選通信標準。 MQTTnet 作為一個高性能的 .NET 開源庫,為 .NET 平臺上的 MQTT 客戶端與伺服器開發提供了強大的支持。 本文將全面介紹 MQTTnet 的核心功能 ...
  • Serilog支持多種接收器用於日誌存儲,增強器用於添加屬性,LogContext管理動態屬性,支持多種輸出格式包括純文本、JSON及ExpressionTemplate。還提供了自定義格式化選項,適用於不同需求。 ...
  • 目錄簡介獲取 HTML 文檔解析 HTML 文檔測試參考文章 簡介 動態內容網站使用 JavaScript 腳本動態檢索和渲染數據,爬取信息時需要模擬瀏覽器行為,否則獲取到的源碼基本是空的。 本文使用的爬取步驟如下: 使用 Selenium 獲取渲染後的 HTML 文檔 使用 HtmlAgility ...
  • 1.前言 什麼是熱更新 游戲或者軟體更新時,無需重新下載客戶端進行安裝,而是在應用程式啟動的情況下,在內部進行資源或者代碼更新 Unity目前常用熱更新解決方案 HybridCLR,Xlua,ILRuntime等 Unity目前常用資源管理解決方案 AssetBundles,Addressable, ...
  • 本文章主要是在C# ASP.NET Core Web API框架實現向手機發送驗證碼簡訊功能。這裡我選擇是一個互億無線簡訊驗證碼平臺,其實像阿裡雲,騰訊雲上面也可以。 首先我們先去 互億無線 https://www.ihuyi.com/api/sms.html 去註冊一個賬號 註冊完成賬號後,它會送 ...
  • 通過以下方式可以高效,並保證數據同步的可靠性 1.API設計 使用RESTful設計,確保API端點明確,並使用適當的HTTP方法(如POST用於創建,PUT用於更新)。 設計清晰的請求和響應模型,以確保客戶端能夠理解預期格式。 2.數據驗證 在伺服器端進行嚴格的數據驗證,確保接收到的數據符合預期格 ...