doum
2025-09-26 9057e04efad1b7d61c77a72e5c37a504d0aee935
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
$(document).ready(function() {
//    // 设置公共导航栏
//    $("#header").load("./components/nav.html");
//    // 设置公共底部
//    $("#footer").load("./components/footer.html");
    var headMenusShow = false;
    $("#head_menu_btn") .click(function(){
        if(!headMenusShow){
          $("#head_menus_div").show();
          $("body").css("overflow","hidden");
        }else{
           $("#head_menus_div").hide();
          $("body").css("overflow","auto");
        }
        headMenusShow =!headMenusShow
    })
});