How to store nav bar in one file?

前端 未结 5 1534
囚心锁ツ
囚心锁ツ 2021-01-30 11:39

I have a navigation bar for my website:

    
  • Home
5条回答
  •  情话喂你
    2021-01-30 11:52

    I am using smartmenus for jquery which requires that you add

    $('#main-menu').smartmenus();
    

    if you have submenus

    I found that if you extend the load to:

    $('#menu').load('navbar.html',function(){
        $('#main-menu').smartmenus();
    });
    

    this works fine. Where main-menu is the class of ul of the menu block.

提交回复
热议问题