2018-04-19


利用js将ajax获取到的后台数据动态加载至网页中

动态生成二级菜单树:

jQuery(function($) {

/**********

获取未处理报警信息总数

**************/

var result;

$.ajax({

async:false,

cache:false,

url: "alarm_findPageAlarm.do",//访问后台接口取数据

// dataType : "json",

type: 'POST',

success: function(data){

result = eval('('+ data +')');

}

});

var alarmCount;

alarmCount = result.total;

/**********

静态代码形式

**********/

/*

  • 设备管理

    • 智能终端管理

    • 标签打印机管理

      */

      /*****从后台取出导航栏数据******/

      $.ajax({

      async:true,

      cache:false,

      url: "user_getMenuBuf.do",

      // dataType : "json",

      type: 'POST',

      success: function(result){

      var result = eval('('+ result +')');

      if(result != undefined && result.length > 0){

      var firstMenu = [];

      var firstHref = [];

      var firstIcon = [];

      var subMenu = [];

      /******一级导航栏数据*******/

      for (var i = 0; i < result.length; i++){

      firstMenu[i] = result[i].name;

      firstHref[i] = result[i].url;

      firstIcon[i] = result[i].iconCls;

      /*******添加li标签********/

      var menuInfo = document.getElementById("menuInfo");

      var firstLi = document.createElement("li");//创建新的 li元素

      menuInfo.appendChild(firstLi);//将此li元素添加至页面的ul下一级中

      firstLi.style.borderBottom = "0px solid #CCEBF8";//设置li下边框样式

      /******设置选中li、离开li时li的样式********/

      firstLi.onmouseover = function(){

      this.style.background = "#23ACFA";

      };

      /* firstLi.onmouseover = function(){

      this.style.background = "#23ACFA";

      }; */

      firstLi.onmouseout=function(){

      this.style.background = "#0477C0";

      };

      /******添加a标签**********/

      var firstALabel = document.createElement("a");

      firstALabel.setAttribute("href", firstHref[i]);//js为新添加的a元素动态设置href属性

      firstALabel.setAttribute("class", "dropdown-toggle");

      //firstALabel.className = "dropdown-toggle";//兼容性好

      firstALabel.setAttribute("target", "content");

      //firstALabel.style.backgroundImage="url(./img/17.jpg)"

      firstALabel.style.background = "#0477C0";//js为新添加的a元素动态设置背景颜色

      // background:url(./img/17.jpg);

      firstALabel.style.marginLeft = "20px";//js为新添加的a元素动态设置左外边距

      firstLi.appendChild(firstALabel);

      firstALabel.onmouseover = function(){

      this.style.background = "#23ACFA";

      };

      /* firstALabel.onmouseover = function(){

      this.style.background = "#23ACFA";

      }; */

      firstALabel.onmouseout=function(){

      this.style.background = "#0477C0";

      };

      /*******添加i标签*******/

      var firstILavel = document.createElement("i");

      firstILavel.setAttribute("class", firstIcon[i]);

      firstILavel.style.color = "#F4F8FF";//动态设置i元素的颜色

      firstALabel.appendChild(firstILavel);

      /*********添加span标签**********/

      var firstSpan = document.createElement("span");

      firstSpan.className = "menu-text";

      firstSpan.innerHTML = firstMenu[i];//js为新添加的span元素动态设置显示内容

      firstSpan.style.fontSize = "14.5px";//js为新添加的span元素动态设置显示内容的字体大小

      firstSpan.style.color = "#66D2F1";//js为新添加的span元素动态设置显示内容的字体颜色

      firstSpan.style.marginLeft = "15px";

      firstALabel.appendChild(firstSpan);

      if (firstMenu[i] == "报警信息管理"){

      var alarmIcon = document.createElement("span");

      alarmIcon.className = "badge badge-important";

      alarmIcon.innerHTML = alarmCount; //alarmCount为全局变量,且是通过ajax从后台获取到的

      firstSpan.appendChild(alarmIcon);

      }

      if (result[i].children.length > 0){

      var secondHref = [];

      var secondMenu = [];

      var secondIcon = [];

      /*******添加b标签********/

      var firstBLabel = document.createElement("b");

      firstBLabel.className = "arrow icon-angle-down";

      firstBLabel.style.color = "white";

      firstALabel.appendChild(firstBLabel);

      /********添加ul标签************/

      var secondUl = document.createElement("ul");

      secondUl.setAttribute("class", "submenu");

      firstLi.appendChild(secondUl);

      for (var j = 0; j < result[i].children.length; j++){

      secondHref[j] = result[i].children[j].url;

      secondMenu[j] = result[i].children[j].name;

      secondIcon[j] = result[i].children[j].iconCls;

      /******添加li标签*******/

      var secondLi = document.createElement("li");

      secondLi.style.background = "#CCEBF8";

      secondUl.appendChild(secondLi);

      /*******添加a标签*******/

      var secondALabel = document.createElement("a");

      secondALabel.setAttribute("href", secondHref[j]);

      secondALabel.setAttribute("target", "content");

      //secondALabel.style.background = "#CCEBF8";

      secondLi.appendChild(secondALabel);

      /*******添加i标签**********/

      var secondILabel = document.createElement("i");

      secondILabel.setAttribute("class", "icon-double-angle-right");

      secondALabel.appendChild(secondILabel);

      /******添加二级导航信息********/

      secondALabel.innerHTML = secondMenu[j];

      secondALabel.style.fontSize = "15px";

      //secondALabel.style.marginLeft = "60px";

      }

      }

      }

      }

      },

      error: function() {

       alert("加载菜单失败");

      }

      });

      })

      静态生成菜单树的代码:

      生成菜单树的效果:

    • ©著作权归作者所有,转载或内容合作请联系作者
      【社区内容提示】社区部分内容疑似由AI辅助生成,浏览时请结合常识与多方信息审慎甄别。
      平台声明:文章内容(如有图片或视频亦包括在内)由作者上传并发布,文章内容仅代表作者本人观点,简书系信息发布平台,仅提供信息存储服务。

      相关阅读更多精彩内容

      • 简述JavaScript起源起源于美国的Netscape公司,原名为LiveScript,后改为JavaScrip...
        3ab670b99521阅读 8,216评论 0 0
      • "use strict";function _classCallCheck(e,t){if(!(e instanc...
        久些阅读 6,174评论 0 2
      • 第一部分 HTML&CSS整理答案 1. 什么是HTML5? 答:HTML5是最新的HTML标准。 注意:讲述HT...
        kismetajun阅读 28,310评论 1 45
      • 工厂模式类似于现实生活中的工厂可以产生大量相似的商品,去做同样的事情,实现同样的效果;这时候需要使用工厂模式。简单...
        舟渔行舟阅读 12,396评论 2 17
      • 1. tab列表折叠效果 html: 能源系统事业部 岗位名称: 工作地点 岗位名...
        lilyping阅读 5,907评论 0 1

      友情链接更多精彩内容