最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

javascript - 3rd Level JQuery Dropdown Not Displaying - Stack Overflow

programmeradmin1浏览0评论

Trying to get 3 level dropdown working. In Opencart I have been using a third party repsonsive menu which works great. Demonstrated and available here

However, Opencart doesn't support 3 level categories so an addon is needed .php?route=marketplace/extension/info&extension_id=19296

the 3rd levels categories are loaded but no displaying. Can anyone help get the thrid category and two systems merged and displaying over 1000px and even loading too with a + symbol?

Here is the dropdown menu in action at Plunkr

<div id="cssmenu"><div id="menu-button">Menu</div>
    <ul>
        <li class="has-sub"><span class="submenu-button"></span><a href="extractor-fans">Extractor Fans</a>
            <ul style="">
                <li><a class="arrow" href="/bathroom-extractor-fans">Bathroom Shower</a>
                    <div class="has-sub"><span class="submenu-button"></span>
                        <ul>
                            <li><a href="bathroom-vids">Designer Videos</a></li>
                        </ul>
                    </div>
                </li>
                <li><a href="ceiling-bathroom"> Bathroom Cabinets</a></li>
            </ul>
        </li>
    </ul>
</div>

Trying to get 3 level dropdown working. In Opencart I have been using a third party repsonsive menu which works great. Demonstrated and available here http://cssmenumaker./menu/responsive-flat-menu

However, Opencart doesn't support 3 level categories so an addon is needed https://www.opencart./index.php?route=marketplace/extension/info&extension_id=19296

the 3rd levels categories are loaded but no displaying. Can anyone help get the thrid category and two systems merged and displaying over 1000px and even loading too with a + symbol?

Here is the dropdown menu in action at Plunkr https://plnkr.co/edit/hZG4pbVCXQupf2kgqoKF?p=preview

<div id="cssmenu"><div id="menu-button">Menu</div>
    <ul>
        <li class="has-sub"><span class="submenu-button"></span><a href="extractor-fans">Extractor Fans</a>
            <ul style="">
                <li><a class="arrow" href="/bathroom-extractor-fans">Bathroom Shower</a>
                    <div class="has-sub"><span class="submenu-button"></span>
                        <ul>
                            <li><a href="bathroom-vids">Designer Videos</a></li>
                        </ul>
                    </div>
                </li>
                <li><a href="ceiling-bathroom"> Bathroom Cabinets</a></li>
            </ul>
        </li>
    </ul>
</div>

Share Improve this question edited Jan 17, 2017 at 14:29 me9867 asked Jan 17, 2017 at 13:55 me9867me9867 1,5995 gold badges26 silver badges54 bronze badges 1
  • You should add the code here and your plunk demo does not work because jquery is missing – Pablo Lozano Commented Jan 19, 2017 at 14:58
Add a ment  | 

4 Answers 4

Reset to default 4 +100

Here's my version, without changing your html and js. All of the changes are strictly within css. Most of the fix lied in getting rid of the following:

#cssmenu ul ul ul {
    margin-left: 100%;
}
#cssmenu ul ul {
    left: -9999px;
}

https://plnkr.co/edit/x4Lbw9AepcdIhkzBoAPM?p=preview

I could not understand your question properly but from what I understood I have a created a two level dropdown using jQuery. 'div' tag is used inside the 'li' tag so the HTML has to be structured just a little more.

   $(document).ready(function() {
     $("#first li").children('ul').hide();
     $("#first li").hover(
       function() {
         $(this).children('ul').hide();
         $(this).children('ul').slideDown('fast');
       },
       function() {
         $('ul', this).slideUp('slow');
       });
     $("#second li").hover(
       function() {
         $(this).children('ul').hide();
         $(this).children('ul').slideDown('fast');
       },
       function() {
         $('ul', this).slideUp('slow');
       });

   });
        #cssmenu,
        #cssmenu ul,
        #cssmenu ul li,
        #cssmenu ul li a,
        #cssmenu #menu-button {
          line-height: 1;
          position: relative;
          display: block;
          -webkit-box-sizing: border-box;
          -moz-box-sizing: border-box;
          box-sizing: border-box;
          margin: 0;
          padding: 0;
          list-style: none;
          border: 0;
        }
        
        #cssmenu:after,
        #cssmenu > ul:after {
          line-height: 0;
          display: block;
          clear: both;
          height: 0;
          content: '.';
        }
        
        #cssmenu #menu-button {
          display: none;
        }
        
        #cssmenu {
          font-family: Arial, Helvetica, sans-serif;
          margin-top: 10px;
          margin-bottom: 10px;
          border-radius: none;
          background: #515151;
        }
        
        #cssmenu > ul > li {
          float: left;
        }
        
        #cssmenu > ul > li > a {
          font-size: 12px;
          font-weight: bold;
          padding: 10px 6px;
          text-decoration: none;
          letter-spacing: 1px;
          text-transform: none;
          color: #fff;
        }
        
        #first ul li a {
          background-color: white;
          font-size: 12px;
          font-weight: bold;
          padding: 10px 6px;
          text-decoration: none;
          letter-spacing: 1px;
          text-transform: none;
          color: black;
          margin-left: 20px;
        }
        
        #first ul ul li a {
          position: relative;
          left: 40px;
        }
<script src="https://cdnjs.cloudflare./ajax/libs/jquery/3.1.0/jquery.min.js"></script>
<div id="cssmenu">
  <div id="menu-button">Menu</div>
  <ul id="first">

    <li class="has-sub"><a href="#">Extractor Fans</a>

      <ul id="second">

        <li>
          <div>
            <a class="arrow has-2nd-sub" href="#">Bathroom Shower</a>
          </div>
          <ul id="third">

            <li class="has-3rd-sub">
              <div><a href="#">Designer Videos</a></div>
              <div class="has-sub"><span class="submenu-button"></span>
              </div>
            </li>
          </ul>

        </li>
        <li><a href="#"> Bathroom Cabinets</a>
        </li>
      </ul>
    </li>


  </ul>
</div>

You shouldn't use a div inside the <li> element.

So it seems to work like this:

<div id="cssmenu">
  <div id="menu-button">Menu</div>
  <ul>
    <li class="has-sub"><span class="submenu-button"></span><a href="extractor-fans">Extractor Fans</a>
      <ul style="">
        <li><a class="arrow" href="/bathroom-extractor-fans">Bathroom Shower</a>
            <ul class="has-sub submenu-button">
              <li><a href="bathroom-vids">Designer Videos</a></li>
            </ul>
        </li>
        <li><a href="ceiling-bathroom"> Bathroom Cabinets</a>
        </li>
      </ul>
    </li>
  </ul>
</div>

See https://plnkr.co/edit/Xc0jSmZd3Qa0koklgUBG?p=preview

Just change in css and you get the result what you have:

/* Line no 575*/
#cssmenu > ul > li > ul > li > div {
   left: -100%;
   top: 0px;
}
/* Line no 171*/
#cssmenu ul ul ul {
    top: 0;
    left: 0;
}

Check the link: https://plnkr.co/edit/qqqYbmwftggcggzvgjAQ?p=preview

发布评论

评论列表(0)

  1. 暂无评论