博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Jquery easyui Tree的简单使用
阅读量:5113 次
发布时间:2019-06-13

本文共 3869 字,大约阅读时间需要 12 分钟。

Jquery easyui Tree的简单使用

Jquery easyui 是jQuery EasyUI是一组基于jQuery的UI插件集合,而jQuery EasyUI的目标就是帮助web开发者更轻松的打造出功能丰富并且美观的UI界面。开发者不需要编写复杂的javascript,也不需要对css样式有深入的了解,开发者需要了解的只有一些简单的html标签。

Jquery easyui 官网: ,中文网站:,jquery easyui 下载地址:

    在项目中有时需要页面设计,不巧美工前端人员比较忙或者其他原因,造成敲代码的程序猿不得不进行ui设计,此时可以尝试easyui。

进入正题,本文分两部分介绍easyui中tree的使用:

  首先我们需要引用两个文件一个是 主题样式css文件,一个是easyui核心js文件(easyui依赖jquery,如果没有引用,需要添加引用)

  在想要生成tree的ul加上class "easyui-tree"

 

1.静态数据Tree,结构确定,数据是确定的,数据直接在html写死的

2.动态数据Tree,结构不确定,动态数据,数据需要从服务器端获取

 

  1. 静态数据Tree

    静态数据tree代码示例:

    在浏览器中的效果:,可以根据自己想要实现的样式,进行样式的调整,建议加页面内联样式或行内样式,不要直接修改easyui的css文件

  2. 动态数据Tree

    动态数据tree前台html代码示例:

      url代表的是从服务器端获取tree的数据的处理程序路径

      经过使用 Fiddle调试可以发现每次请求时,请求参数为“id”,值为选择节点的id

     

    服务器端处理程序getTypesNodeHandler.ashx示例代码:     

    移除tree当前选择项,当选中tree的某个 节点时,对应节点会多一个class为“tree-node-selected ”的样式,将这个样式去掉就可以移除选择的tree的选项

    $(".tree-node-selected").removeClass("tree-node-selected");

     

    1 using System; 2  3 namespace Models.FormatModel 4 { 5     public class TreeModel 6     { 7         //节点id 8         public int id { get; set; } 9 10         //节点显示的文本11         public string text { get; set; }12 13         //open 、closed14         public string state { get { return "closed"; } }15     }16 }
    TreeModel
    1 using System; 2 using System.Collections.Generic; 3 using System.Linq; 4 using System.Web; 5  6 namespace WebApplication1.Handlers 7 { 8     ///  9     /// Summary description for getTypesNodeHandler10     /// 11     public class getTypesNodeHandler : IHttpHandler12     {13 14         public void ProcessRequest(HttpContext context)15         {16             context.Response.ContentType = "text/plain";17             int parentId = 0;18             int.TryParse(context.Request["id"], out parentId);19             List
    types = null;20 try21 {22 //判断父节点的值23 if (parentId > 0)24 {25 //加载子级菜单26 types = CommonNews.Helper.OperateContext.Current.LoadSecondaryCategory(parentId);27 }28 else29 {30 //加载顶级菜单31 types = CommonNews.Helper.OperateContext.Current.LoadTopCategory();32 }33 //判断是否有值,有值的话先转换为tree模型再转换为json输出,没有值直接输出空字符串34 if (types != null)35 {36 //转换为tree模型37 List
    tree = types.Select(t => new Models.FormatModel.TreeModel() { id = t.CategoryId, text = t.CategoryName }).ToList();38 //转换为json格式数据输出39 context.Response.Write(Common.ConverterHelper.ObjectToJson(tree));40 }41 else42 {43 context.Response.Write("");44 }45 }46 catch (Exception ex)47 {48 new Common.LogHelper(typeof(getTypesNodeHandler)).Error(ex);49 context.Response.Write("error");50 }51 }52 53 public bool IsReusable54 {55 get56 {57 return true;58 }59 }60 }61 }
    getTypesNodeHandler

    转载于:https://www.cnblogs.com/weihanli/p/easyuiTreeSimpleDemo.html

    你可能感兴趣的文章
    IO—》Properties类&序列化流与反序列化流
    查看>>
    Codeforces 719B Anatoly and Cockroaches
    查看>>
    关于TFS2010使用常见问题
    查看>>
    聚合与组合
    查看>>
    ionic2+ 基础
    查看>>
    Screening technology proved cost effective deal
    查看>>
    Thrift Expected protocol id ffffff82 but got 0
    查看>>
    【2.2】创建博客文章模型
    查看>>
    Jsp抓取页面内容
    查看>>
    大三上学期软件工程作业之点餐系统(网页版)的一些心得
    查看>>
    可选参数的函数还可以这样设计!
    查看>>
    Java语言概述
    查看>>
    关于BOM知识的整理
    查看>>
    使用word发布博客
    查看>>
    面向对象的小demo
    查看>>
    微服务之初了解(一)
    查看>>
    GDOI DAY1游记
    查看>>
    收集WebDriver的执行命令和参数信息
    查看>>
    数据结构与算法(三)-线性表之静态链表
    查看>>
    mac下的mysql报错:ERROR 1045(28000)和ERROR 2002 (HY000)的解决办法
    查看>>