心理咨询网
選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

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. });