| | |
| | | // $("#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 |
| | | }) |
| | | // 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 |
| | | // }) |
| | | }); |
| | | |