心理咨询网
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

common_m.js 283B

1234567891011
  1. //导航栏
  2. $(document).ready(function(){
  3. $("#menu").click(function(){
  4. $(".fixed-nav-bg").show();
  5. $(".fixed-nav").addClass("fixed-nav-left");
  6. });
  7. $(".fixed-nav-bg").click(function(){
  8. $(".fixed-nav-bg").hide();
  9. $(".fixed-nav").removeClass("fixed-nav-left");
  10. });
  11. });