javascript - 用 span 替换标签

标签 javascript jquery html angularjs mmenu

我正在使用 AngularJS 和 mmenu 制作菜单,但我有一些子菜单无法正确用作子菜单。本质上,mmenu 将跨度视为菜单,当您单击它时,它会展开(或尝试)并将标签视为链接,当您单击它时,菜单会关闭并尝试将您发送到链接。问题是,当我使用 ng-repeat 构建菜单时,我的一些项目是链接(a),有些项目应该有进一步的子菜单,使它们具有跨度。我可以想出几种方法来解决这个问题,但我似乎无法使它们发挥作用,以下是我尝试过的解决方案:

  1. 使用 ng-click 函数运行 if 语句来查看单击的菜单是否有嵌套 ul,如果有,则添加类 mm.opened 来展开子菜单,而不是点击链接

  2. 使用函数在构建后运行整个菜单并找到任何 <a>具有嵌套 ul 的标签,并将 a 标签替换为 span ("span"+ this.innerHTML + "/span")

  3. 寻求帮助(当前步骤)

我确实对任何解决方案持开放态度,我的 Angular 可能是错误的,这可能导致我所有的问题,所以请随时纠正我。

我无法附加工作示例,因为我的菜单是从 json 文件构建的,并且我无法将 json 导入到代码编辑器(据我所知)

这是我的菜单:

<ul>
  <li><a ng-href="#/home" class="menuBtn">Home</a></li>
  <li ng-repeat="menu in menuInfo" ng-class="countDisable(menu.schematics.length, menu)"> <a class="menuBtn">ATA {{menu.ata}} - {{menu.name}}</a>
    <ul>
      <li ng-click="subCheck()" ng-repeat="submenu in menu.schematics"><a ng-href="#{{submenu.view}}" class="menuBtn">{{submenu.name}}</a>
        <ul>
          <li ng-repeat="animated in submenu.subs"><a ng-href="#{{animated.view}}" ng-click="contentCtrl(animated)" class="menuBtn">{{animated.name}}</a></li>
        </ul>
      </li>
    </ul>
  </li>
</ul>

它看起来像这样:

Menu opened

当我单击 ATA 29 时,它会扩展为:

Menu opened with ATA 29 expanded

你会看到 ATA 29 有 4 个项目,其中 3 个应该是常规链接,第一个也有四个嵌套项目,所以当我单击它时,我希望它像 ATA 29 一样展开,但是相反,它认为它是一个链接,所以它这样做:

Menu opened with left hydraulic system selected

我意识到如果没有工作代码就很难提供帮助,但任何帮助将不胜感激。

var app = angular.module('myApp', ['ngRoute'])

.config(['$routeProvider',
  function($routeProvider) {
    //determines redirects go via shortcuts, clicking on the management icon on the main page sends the routeProvider /MG which it then uses to pull the relevant HTML file
    $routeProvider
      .when('/', {
        controller: 'projectController',
        templateUrl: './assets/html/home.html'
      })
      .when('/schematicView', {
        controller: 'projectController',
        templateUrl: './assets/html/schematicView.html'
      })
      .when('/staticView', {
        controller: 'projectController',
        templateUrl: './assets/html/staticView.html'
      })
      .otherwise({
        controller: 'projectController',
        templateUrl: './assets/html/home.html'
      })
  }
]);

app.controller('projectController', function projectController($scope, $http, $rootScope, $timeout) {
  // $(document).ready(function($) {
  //     setTimeout(function() {
  //         $("#menu").mmenu({
  //             "slidingSubmenus": false,
  //             "counters": true,
  //             extensions: ["multiline"],
  //             offCanvas: {
  //                 position: "left",
  //                 zposition: "front"
  //             }
  //         });
  //     }, 100);
  //     // $("#menu").click(function() {
  //     //     $('.mm-opened').removeClass('mm-opened');
  //     // });
  // });

  $scope.menuInfo = [{
    name: "This is a span it should expand"
  }];
   $scope.secMenuInfo = [{
    name: "This is an a, it should close the menu",
    name2: "This is an a, but it needs to work like a span",
     name3: "This is an a, it should close the menu"
  }];



  // $scope.activeID = 'HM';
  // $scope.activePath = "Assets/images/allActive.png";

  // function getImgPath(item) {
  //     $scope.activePath = "Assets/images/" + item.path + "";
  //     console.log($scope.activePath);
  // }

  // $("#menu em").trigger("count");

  $scope.setImgPath = function(btnPath) {
    console.log(btnPath)
    $scope.activePath = "Assets/images/" + btnPath + "";
    console.log($scope.activePath);
  };
  $scope.contentCtrl = function(id) {
    $scope.active = id;
    console.log($scope.active);
    // $scope.activeItem = item;
    // getImgPath($scope.activeItem);


  };
  // $scope.subCheck = function() {
  //     if ($(this).children().find('mm-counter')) {
  //         alert("has ul");
  //         return false;
  //     } else {
  //         alert("no ul");
  //         return false;
  //     }

  // };



});

app.directive("mmenu", function($timeout) {
  return {
    restrict: 'A',
    link: function(scope, element, attrs) {

        $timeout(function() {
          $(element).mmenu({
            "slidingSubmenus": false,
            "counters": true,
            extensions: ["multiline"],
            offCanvas: {
              position: "left",
              zposition: "front"
            } //ends offCanvas
          });

          $("em").each(function() {
            var t = $(this).text().trim();
            if (t == "0") {
              $(this).next().remove();

              $(this).remove();

            }
          });
        }, 10);
      } //ends link
  }

});
/* Helvetica Font */

@font-face {
  font-family: HelveticaNeue;
  src: local('0'), url('../fonts/HelveticaNeueLTStd-Lt.woff') format('woff'), url('../fonts/HelveticaNeueLTStd-Lt.otf') format('otf');
}
body,
html {
  font-family: Helvetica, Arial, sans-serif;
  overflow: none;
  color: #FFF;
}
body {
  background: #FFFFFF;
}
#header {
  background: #212121;
  box-shadow: 0 1.5px 4px rgba(0, 0, 0, 0.24), 0 1.5px 6px rgba(0, 0, 0, 0.12);
}
#footer {
  background: #212121;
  box-shadow: 0 -1.5px 4px rgba(0, 0, 0, 0.24), 0 -1.5px 6px rgba(0, 0, 0, 0.12);
}
.fa {
  color: #8ea5d0;
}
.fa:hover {
  color: #627EB0;
}
.fa:active {
  color: #415E95;
}
a:focus {
  outline: 0 none;
  color: #627EB0;
  text-decoration: none;
}
.info_btn {
  color: #FFF !important;
  background-color: #8ea5d0;
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.23), 0 3px 12px rgba(0, 0, 0, 0.16);
}
.info_btn:hover {
  background-color: #627EB0;
}
.info_btn:active {
  background-color: #415E95;
  color: #FFF;
  text-decoration: none;
}
.info_btn:hover,
.info_btn:visited,
.info_btn:link,
.info_btn:active {
  text-decoration: none;
  color: #FFF;
}
#menu {
  background: #444444;
  box-shadow: 5px 0px 4px rgba(0, 0, 0, 0.3);
  z-index: 10;
}
#menu .li {
  background: #555555;
}
#menu > ul > li {
  list-style: none;
}
#menu > ul {
  padding: 0px;
}
.menuBtn {
  background-color: transparent;
  display: inline-flex;
  cursor: pointer;
  color: #ffffff;
  border: #212121;
  border-bottom-style: solid;
  border-width: 1px;
  width: 100%;
  font-size: 17px;
  padding: 10px 10px;
  -webkit-transition: color .25s linear, background-color .25s ease-in-out, border-color .25s ease-in-out;
  -moz-transition: color .25s linear, background-color .25s ease-in-out, border-color .25s ease-in-out;
  -o-transition: color .25s linear, background-color .25s ease-in-out, border-color .25s ease-in-out;
  transition: color .25s linear, background-color .25s ease-in-out, border-color .25s ease-in-out;
  outline: none;
}
.menuBtn:hover {
  background-color: #333333;
  outline: none;
}
.menuBtn:active {
  position: relative;
  background-color: #222222;
  outline: none;
}
#homeContent {
  color: #000000;
}
/* Global and Overrides */

#header {
  height: 96px;
  border: 0;
  top: 0px;
  width: 100%;
}
#content {
  width: 100%;
  position: fixed;
  top: 96px;
  bottom: 72px;
}
#footer {
  height: 72px;
  border: 0;
  bottom: 0px;
  position: fixed;
  width: 100%;
}
.fa {
  font-size: 36px;
  cursor: pointer;
  display: inline-block;
  padding-top: 30px;
  padding-left: 30px;
}
.title {
  position: absolute;
  right: 75px;
  top: 20px;
  max-width: 400px;
}
.info_btn {
  position: absolute;
  font-size: 40px;
  font-weight: 400;
  right: 30px;
  top: 48px;
  border-radius: 50px;
  padding: 0 21.8px;
  font-size: 20px;
  line-height: 48px;
  position: absolute;
  top: 72px;
  right: 1.6%;
  z-index: 100;
}
/*  causes the color to change when you hover over a button of class myButton */

.revNum {
  font-size: 16px;
  position: absolute;
  bottom: 25px;
  left: 12px;
}
.footer_info {
  bottom: 25px;
  position: absolute;
  margin: 0px auto;
  width: 100%;
  font-size: 18px;
  display: block;
  text-align: center;
}
.logo {
  height: 48px;
  position: absolute;
  bottom: 12px;
  right: 75px;
}
<!DOCTYPE html>
<html>

<head>
  <link href="https://cdnjs.cloudflare.com/ajax/libs/jQuery.mmenu/5.6.1/css/jquery.mmenu.all.css" rel="stylesheet" />
  <script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
  <script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.2.23/angular.min.js"></script>
  <script src="https://cdnjs.cloudflare.com/ajax/libs/jQuery.mmenu/5.6.1/js/jquery.mmenu.all.min.js"></script>
  <script src="https://code.angularjs.org/1.5.0-rc.2/angular-route.js"></script>
</head>

<body ng-app="myApp" ng-controller="projectController">
  <title>{{projectInfo.title}}</title>
  <div id="wrapper">
    <div id="header">

      <a class="fa fa-home" ng-href="#/home"></a>
      <img class="title" src="assets/images/title.svg"></img>
      <a href class="info_btn"><span>i</span></a>
      <nav id="menu" mmenu>
        <ul>
          <li><a ng-href="#/home" class="menuBtn">Home</a>
          </li>
          <li ng-repeat="menu in menuInfo" ng-class="countDisable(menu.schematics.length, menu)"> <span class="menuBtn">ATA {{menu.ata}} - {{menu.name}}</span>
            <ul>
              <li ng-repeat="submenu in secMenuInfo"><a ng-href="#{{submenu.view}}" class="menuBtn">{{submenu.name}}</a>
                <li ng-repeat="submenu in secMenuInfo"><a ng-href="#{{submenu.view}}" class="menuBtn">{{submenu.name2}}</a>
                <ul>
                  <li ng-repeat="animated in secMenuInfo"><a ng-href="#{{animated.view}}" ng-click="contentCtrl(animated)" class="menuBtn">{{submenu.name3}}</a>
                  </li>
                </ul>
              </li>
            </ul>
          </li>
        </ul>
      </nav>
    </div>
    <div id="content">
      <a href="#menu" target="_self"><h1>HOME</h1></a>
    </div>
    <div id="footer">
      <div class="revNum">Revision: {{projectInfo.version}}</div>
      <div class="footer_info">{{projectInfo.footer}}</div>
      <img class="logo" ng-src="./assets/images/{{projectInfo.logo}}">
    </div>
  </div>
</body>

</html>

最佳答案

  • 同级 li 未关闭,并且已成为嵌套菜单,而没有正确设置为子菜单。

  • li 没有生成我期望的 span 。所以我只是复制了我在顶部菜单中看到的模式,它就起作用了。

更改此:

 <li ng-repeat="submenu in secMenuInfo">
   <a ng-href="#{{submenu.view}}" class="menuBtn">{{submenu.name}}</a>
   <li ng-repeat="submenu in secMenuInfo">
     <a ng-href="#{{submenu.view}}" class="menuBtn">{{submenu.name2}}</a>

对此:

 <li ng-repeat="submenu in secMenuInfo">
    <a ng-href="#{{submenu.view}}" class="menuBtn">{{submenu.name}}</a>
 </li>
 <li ng-repeat="submenu in secMenuInfo">
    <span class="menuBtn">{{submenu.name2}}</span>

<!DOCTYPE html>
<html>
<meta charset="utf-8">

<head>
  <link href="https://cdnjs.cloudflare.com/ajax/libs/jQuery.mmenu/5.6.1/css/jquery.mmenu.all.css" rel="stylesheet" />

  <style>
    /* Helvetica Font */
    @font-face {
      font-family: HelveticaNeue;
      src: local('0'), url('../fonts/HelveticaNeueLTStd-Lt.woff') format('woff'), url('../fonts/HelveticaNeueLTStd-Lt.otf') format('otf');
    }
    body,
    html {
      font-family: Helvetica, Arial, sans-serif;
      overflow: none;
      color: #FFF;
    }
    body {
      background: #FFFFFF;
    }
    #header {
      background: #212121;
      box-shadow: 0 1.5px 4px rgba(0, 0, 0, 0.24), 0 1.5px 6px rgba(0, 0, 0, 0.12);
    }
    #footer {
      background: #212121;
      box-shadow: 0 -1.5px 4px rgba(0, 0, 0, 0.24), 0 -1.5px 6px rgba(0, 0, 0, 0.12);
    }
    .fa {
      color: #8ea5d0;
    }
    .fa:hover {
      color: #627EB0;
    }
    .fa:active {
      color: #415E95;
    }
    a:focus {
      outline: 0 none;
      color: #627EB0;
      text-decoration: none;
    }
    .info_btn {
      color: #FFF !important;
      background-color: #8ea5d0;
      box-shadow: 0 3px 12px rgba(0, 0, 0, 0.23), 0 3px 12px rgba(0, 0, 0, 0.16);
    }
    .info_btn:hover {
      background-color: #627EB0;
    }
    .info_btn:active {
      background-color: #415E95;
      color: #FFF;
      text-decoration: none;
    }
    .info_btn:hover,
    .info_btn:visited,
    .info_btn:link,
    .info_btn:active {
      text-decoration: none;
      color: #FFF;
    }
    #menu {
      background: #444444;
      box-shadow: 5px 0px 4px rgba(0, 0, 0, 0.3);
      z-index: 10;
    }
    #menu .li {
      background: #555555;
    }
    #menu > ul > li {
      list-style: none;
    }
    #menu > ul {
      padding: 0px;
    }
    .menuBtn {
      background-color: transparent;
      display: inline-flex;
      cursor: pointer;
      color: #ffffff;
      border: #212121;
      border-bottom-style: solid;
      border-width: 1px;
      width: 100%;
      font-size: 17px;
      padding: 10px 10px;
      -webkit-transition: color .25s linear, background-color .25s ease-in-out, border-color .25s ease-in-out;
      -moz-transition: color .25s linear, background-color .25s ease-in-out, border-color .25s ease-in-out;
      -o-transition: color .25s linear, background-color .25s ease-in-out, border-color .25s ease-in-out;
      transition: color .25s linear, background-color .25s ease-in-out, border-color .25s ease-in-out;
      outline: none;
    }
    .menuBtn:hover {
      background-color: #333333;
      outline: none;
    }
    .menuBtn:active {
      position: relative;
      background-color: #222222;
      outline: none;
    }
    #homeContent {
      color: #000000;
    }
    /* Global and Overrides */
    #header {
      height: 96px;
      border: 0;
      top: 0px;
      width: 100%;
    }
    #content {
      width: 100%;
      position: fixed;
      top: 96px;
      bottom: 72px;
    }
    #footer {
      height: 72px;
      border: 0;
      bottom: 0px;
      position: fixed;
      width: 100%;
    }
    .fa {
      font-size: 36px;
      cursor: pointer;
      display: inline-block;
      padding-top: 30px;
      padding-left: 30px;
    }
    .title {
      position: absolute;
      right: 75px;
      top: 20px;
      max-width: 400px;
    }
    .info_btn {
      position: absolute;
      font-size: 40px;
      font-weight: 400;
      right: 30px;
      top: 48px;
      border-radius: 50px;
      padding: 0 21.8px;
      font-size: 20px;
      line-height: 48px;
      position: absolute;
      top: 72px;
      right: 1.6%;
      z-index: 100;
    }
    /*  causes the color to change when you hover over a button of class myButton */
    .revNum {
      font-size: 16px;
      position: absolute;
      bottom: 25px;
      left: 12px;
    }
    .footer_info {
      bottom: 25px;
      position: absolute;
      margin: 0px auto;
      width: 100%;
      font-size: 18px;
      display: block;
      text-align: center;
    }
    .logo {
      height: 48px;
      position: absolute;
      bottom: 12px;
      right: 75px;
    }
  </style>
</head>

<body ng-app="myApp" ng-controller="projectController">
  <title>{{projectInfo.title}}</title>
  <div id="wrapper">
    <div id="header">

      <a class="fa fa-home" ng-href="#/home"></a>
      <img class="title" src="assets/images/title.svg"></img>
      <a href class="info_btn"><span>i</span></a>
      <nav id="menu" mmenu>
        <ul>
          <li><a ng-href="#/home" class="menuBtn">Home</a>
          </li>
          <li ng-repeat="menu in menuInfo" ng-class="countDisable(menu.schematics.length, menu)"> <span class="menuBtn">ATA {{menu.ata}} - {{menu.name}}</span>
            <ul>
              <li ng-repeat="submenu in secMenuInfo"><a ng-href="#{{submenu.view}}" class="menuBtn">{{submenu.name}}</a>
              </li>
              <li ng-repeat="submenu in secMenuInfo"><span class="menuBtn">{{submenu.name2}}</span>
                <ul>
                  <li ng-repeat="animated in secMenuInfo"><a ng-href="#{{animated.view}}" ng-click="contentCtrl(animated)" class="menuBtn">{{submenu.name3}}</a>
                  </li>
                </ul>
              </li>
            </ul>
          </li>
        </ul>
      </nav>
    </div>
    <div id="content">
      <a href="#menu" target="_self"><h1>HOME</h1></a>
    </div>
    <div id="footer">
      <div class="revNum">Revision: {{projectInfo.version}}</div>
      <div class="footer_info">{{projectInfo.footer}}</div>
      <img class="logo" ng-src="./assets/images/{{projectInfo.logo}}">
    </div>
  </div>
  <script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
  <script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.2.23/angular.min.js"></script>
  <script src="https://cdnjs.cloudflare.com/ajax/libs/jQuery.mmenu/5.6.1/js/jquery.mmenu.all.min.js"></script>
  <script src="https://code.angularjs.org/1.5.0-rc.2/angular-route.js"></script>
  <script>
    var app = angular.module('myApp', ['ngRoute'])

    .config(['$routeProvider',
      function($routeProvider) {
        //determines redirects go via shortcuts, clicking on the management icon on the main page sends the routeProvider /MG which it then uses to pull the relevant HTML file
        $routeProvider
          .when('/', {
            controller: 'projectController',
            templateUrl: './assets/html/home.html'
          })
          .when('/schematicView', {
            controller: 'projectController',
            templateUrl: './assets/html/schematicView.html'
          })
          .when('/staticView', {
            controller: 'projectController',
            templateUrl: './assets/html/staticView.html'
          })
          .otherwise({
            controller: 'projectController',
            templateUrl: './assets/html/home.html'
          })
      }
    ]);

    app.controller('projectController', function projectController($scope, $http, $rootScope, $timeout) {
      // $(document).ready(function($) {
      //     setTimeout(function() {
      //         $("#menu").mmenu({
      //             "slidingSubmenus": false,
      //             "counters": true,
      //             extensions: ["multiline"],
      //             offCanvas: {
      //                 position: "left",
      //                 zposition: "front"
      //             }
      //         });
      //     }, 100);
      //     // $("#menu").click(function() {
      //     //     $('.mm-opened').removeClass('mm-opened');
      //     // });
      // });

      $scope.menuInfo = [{
        name: "This is a span it should expand"
      }];
      $scope.secMenuInfo = [{
        name: "This is an a, it should close the menu",
        name2: "This is an a, but it needs to work like a span",
        name3: "This is an a, it should close the menu"
      }];



      // $scope.activeID = 'HM';
      // $scope.activePath = "Assets/images/allActive.png";

      // function getImgPath(item) {
      //     $scope.activePath = "Assets/images/" + item.path + "";
      //     console.log($scope.activePath);
      // }

      // $("#menu em").trigger("count");

      $scope.setImgPath = function(btnPath) {
        console.log(btnPath)
        $scope.activePath = "Assets/images/" + btnPath + "";
        console.log($scope.activePath);
      };
      $scope.contentCtrl = function(id) {
        $scope.active = id;
        console.log($scope.active);
        // $scope.activeItem = item;
        // getImgPath($scope.activeItem);


      };
      // $scope.subCheck = function() {
      //     if ($(this).children().find('mm-counter')) {
      //         alert("has ul");
      //         return false;
      //     } else {
      //         alert("no ul");
      //         return false;
      //     }

      // };



    });

    app.directive("mmenu", function($timeout) {
      return {
        restrict: 'A',
        link: function(scope, element, attrs) {

            $timeout(function() {
              $(element).mmenu({
                "slidingSubmenus": false,
                "counters": true,
                extensions: ["multiline"],
                offCanvas: {
                  position: "left",
                  zposition: "front"
                } //ends offCanvas
              });

              $("em").each(function() {
                var t = $(this).text().trim();
                if (t == "0") {
                  $(this).next().remove();

                  $(this).remove();

                }
              });
            }, 10);
          } //ends link
      }

    });
  </script>
</body>

</html>

关于javascript - 用 span 替换标签,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35158753/

相关文章:

javascript - qTip 没有用于动态内容的方法 'qtip'

javascript - 由 jQuery 的 .html() 添加的输入的发布值

javascript - 如何使自动加载进度条重定向?

javascript - 我的 javascript 无法在浏览器中缓存

javascript - 单击关闭按钮后关闭弹出窗口

javascript - 调整窗口大小时,DIV offsetWidth/Width/innerWidth 在 IE8 中返回零

javascript - 通过批处理文件自动登录到 Windows 7/Chrome 上的网站

javascript - 如何将日程元素添加到此日历中?

jQuery:获取所选 li 的级别

javascript - 打印浏览器窗口的可视内容