您好,登錄后才能下訂單哦!
-----后臺
using System; using System.Collections.Generic; using System.Linq; using System.Web; using System.Web.UI; using System.Web.UI.WebControls; using System.Data; using System.Text; public partial class _Default : System.Web.UI.Page { protected void Page_Load(object sender, EventArgs e) { } public string GetzNodes() { StringBuilder sb = new StringBuilder(); sb.Append("<script>"); sb.Append("var zNodes =["); //*****************************************加入遍歷代碼 for (int i = 0; i < 50; i++) { if (i == 0) { //父節點 sb.Append(SetParametes(i.ToString(), "-1", "a", true, true)); } else if(i<10) //子節點 sb.Append(SetParametes(i.ToString(), "0", "b", false)); else //父節點 sb.Append(SetParametes(i.ToString(), "-1", "a", true)); } //******************************************************** sb.Append("];"); sb.Append("</script>"); return sb.ToString(); } /// <summary> /// 設置節點 /// </summary> /// <param name="id">id</param> /// <param name="pid">父級id</param> /// <param name="name">名稱</param> /// <param name="parent">是否是父節點?</param> /// <param name="open">是否展開?</param> /// <returns>返回節點</returns> private string SetParametes(string id, string pid, string name, bool parent, bool open = false) { //父節點的展開圖標 string Popenpath = "../img/1_open.png"; //父節點的關閉圖標 string Pclosepath = "../img/1_close.png"; //子節點的圖標 string Cclosepath = "../img/2.png"; StringBuilder sb = new StringBuilder(); sb.Append("{"); sb.AppendFormat("id:{0},", id); sb.AppendFormat("pId:{0},", pid); sb.AppendFormat("name:\"{0}\",", name); if (open) { sb.AppendFormat("open: true,"); } if (parent) { sb.AppendFormat("iconOpen: \"{0}\",", Popenpath); sb.AppendFormat("iconClose: \"{0}\"", Pclosepath); } else { sb.AppendFormat("icon:\"{0}\"", Cclosepath); } sb.Append("},"); return sb.ToString(); } }
-----前臺
<%@ Page Language="C#" AutoEventWireup="true" CodeFile="Default.aspx.cs" Inherits="_Default" %> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head runat="server"> <title></title> <link href="../css/demo_new.css" rel="stylesheet" type="text/css" /> <link href="../css/zTreeStyle/zTreeStyle.css" rel="stylesheet" type="text/css" /> <script src="../js/jquery-1.4.4.min.js" type="text/javascript"></script> <script src="../js/jquery.ztree.core-3.5.js" type="text/javascript"></script> </head> <%=GetzNodes()%> <script type="text/javascript"> var setting = { data: { simpleData: { enable: true} }, callback: { onClick: zTreeOnClick} }; $(document).ready(function () { $.fn.zTree.init($("#treeDemo"), setting, zNodes); }); //顯示div function showdiv() { $("#zhezhao").fadeIn(300); $("#treeDemodiv").fadeIn(300); } //隱藏div function closediv() { $("#zhezhao").fadeOut(300); $("#treeDemodiv").fadeOut(300); } //展示zTree function showZTree() { var w = document.documentElement.clientWidth; var h = document.documentElement.clientHeight; var l = document.documentElement.clientWidth / 2 - $("#treeDemodiv").width() / 2; var t = document.documentElement.clientHeight / 2 - $("#treeDemodiv").height() / 2; $("#zhezhao").css({ "width": w + "px", "height": h + "px", "filter": "alpha(opacity=25)", "-moz-opacity": "0.25", "-khtml-opacity": "0.25", "opacity": "0.25" }); $("#treeDemodiv").css({ "left": l + "px", "top": t + "px" }); showdiv(); } //點擊觸發事件 function zTreeOnClick(event, treeId, treeNode) { alert(treeNode.id + "," + treeNode.name); closediv(); } </script> <body> <form id="form1" runat="server"> <input type="button" value="顯示" onclick="showZTree()"> <!------------------Treediv---------------------> <div id="treeDemodiv" class="zTreeDemoBackground left"> <ul ><li ><img onclick="$('#treeDemodiv').fadeOut(300);$('#zhezhao').fadeOut(300);" src="../img/yzfalse.png" /></li></ul> <ul id="treeDemo" class="ztree"></ul> </div> <div id="zhezhao" ></div> <!------------------Treediv---------------------> </form> </body> </html>
整合包下載:http://down.51cto.com/data/1967063
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。