博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
动态menu导航条以及treeview树
阅读量:4969 次
发布时间:2019-06-12

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

1.menu表数据

2.在后台生成html内容后,前台利用nav-h.css生成menu导航条,利用Jquery的treeview插件生成menu树

前台coding:

   

后台coding:

protected void Page_Load(object sender, EventArgs e)        {            if (!IsPostBack)            {                string menuHtml = string.Empty;                menuHtml = BuildMenuWithRoot(null, string.Empty, "Tree");                tree.InnerHtml = menuHtml;                menuHtml = BuildMenuWithRoot(null, string.Empty, "Menu");                menu.InnerHtml = menuHtml;            }        }        public string BuildMenuWithRoot(int? parentId, string str, string type)        {            IEnumerable
menus = GetMenuByParentId(parentId); foreach (menu m in menus) { try { str += "
  • " + m.Description + ""; str += BuildMenuWithRoot(m.Id, string.Empty, type); str += "
  • "; } catch { } } string idstr = string.Empty; if (type == "Menu") idstr = " id=\"nav\""; else if (type == "Tree") idstr = " id=\"menuTree\""; if (menus.Count() > 0) str = "
    " + str+""; return str; } public IEnumerable
    GetMenuByParentId(int? parentId) { WorkPermitDataContext db = new WorkPermitDataContext(); var query = from m in db.menus where (parentId != null && m.ParentId == parentId) || (parentId == null && m.ParentId == null) orderby m.OrderNumber select m; return query.AsEnumerable(); }

    生成的menu树html:

    menu树的浏览器效果:

     

    生成的menu导航条html:

    menu导航的浏览器效果:

     

    3.从上面可以看出,由于其它所有menu都是由root根节点生成,所以显示的树状结构并不符合我们的使用习惯,加以改进

    后台coding:

    public string BuildMenu(int? parentId, string str, string type)        {            IEnumerable
    menus = GetMenuByParentId(parentId); foreach (menu m in menus) { try { if (parentId != null) str += "
  • " + m.Description + ""; str += BuildMenu(m.Id, string.Empty, type); if (parentId != null) str += "
  • "; } catch { } } string idstr = string.Empty; if (menus.Count() > 0) { if (parentId == null) { if (type == "Menu") idstr = "
      "; if (type == "Tree") idstr = "
        "; str = idstr + "
      • Home
      • " + str.Substring(4, str.Length - 9) + "
      "; } else str = "
        " + str + "
      "; } return str; }

    生成的menu树html

    menu树浏览器效果

    生成的menu导航条html

    menu导航条浏览器效果

    4.使用到的treeview插件可从官网下载
    nav-h.css内容如下

    li:hover ul, li.over ul{ display:block;}ul#nav {	position: relative;	}ul#nav ul {	position: absolute; display: none; TOP: 100%; right: 0px;}ul#nav ul ul {	TOP: 0px; right: 100%}ul#nav ul ul ul {	TOP: 0px; right: 100%}ul#nav LI {	position: relative; display: inline; FLOAT: left;}ul#nav ul LI {	 display: block;width:250px}ul#nav A {	 display: block;  background: #ddd; FLOAT: left; HEIGHT: 1%; COLOR: #666; BORDER-TOP: #fff 1px solid; BORDER-RIGHT: #fff 1px solid; TEXT-DECORATION: none; padding:3px 20px}ul#nav A:hover {	background: #bbb; COLOR: #fff}ul#nav LI:hover A {	background: #bbb; COLOR: #fff; }ul#nav LI:hover LI A {	background: #bbb; FLOAT: none ;padding:3px 6px;}ul#nav LI:hover LI A:hover {	background: #999}ul#nav LI:hover LI:hover A {	background: #999}ul#nav LI:hover LI:hover LI A {	background: #999}ul#nav LI:hover LI:hover LI A:hover {	background: #666}ul#nav LI:hover LI:hover LI:hover A {	background: #666}ul#nav LI:hover LI:hover LI:hover LI A {	background: #666}ul#nav LI:hover LI:hover LI:hover LI A:hover {	background: #333}ul#nav LI:hover ul ul {	display: none}ul#nav LI:hover ul ul ul {	display: none}ul#nav LI:hover ul {	display: block}ul#nav ul LI:hover ul {	display: block}ul#nav ul ul LI:hover ul {	display: block}

     

    转载于:https://www.cnblogs.com/sui84/p/6777193.html

    你可能感兴趣的文章
    SLF4+Logback 使用及配置
    查看>>
    [转] GCC 中的编译器堆栈保护技术
    查看>>
    ubuntu下如何设置主机名
    查看>>
    OracleLinux上安装数据库(DBCA)
    查看>>
    为什么无法发起qq临时会话,必须添加好友?如何设置才能临时会话?
    查看>>
    如何看英文文档?
    查看>>
    WebStorm中配置node.js(Windows)
    查看>>
    Windows Azure Platform 系列文章目录
    查看>>
    思维(数学)
    查看>>
    图论3 二分图匹配
    查看>>
    linux 相关命令
    查看>>
    SQL字符串传参
    查看>>
    前端基本功之居中
    查看>>
    oracle 中导出系统中现有rdbms_jobs中的脚本及schedules job的创建
    查看>>
    PintJS – 轻量,并发的 GruntJS 运行器
    查看>>
    jQuery Mapael – 呈现动态的矢量地图
    查看>>
    Subtle Patterns:网页纹理素材精品免费下载
    查看>>
    数据、信息与知识、思想之间的关联
    查看>>
    C++ 格式化输出 及 输入 流
    查看>>
    转-linux误删文件恢复
    查看>>