国内流行的内容管理系统(CMS)多端全媒体解决方案 https://www.dedebiz.com
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.

16 lines
395B

  1. $(function () {
  2. //左侧菜单开关
  3. LeftMenuToggle();
  4. });
  5. function LeftMenuToggle() {
  6. //左侧菜单开关
  7. $("#togglemenu").click(function () {
  8. if ($("body").attr("class") == "showmenu") {
  9. $("body").attr("class", "hidemenu");
  10. $(this).html('<i class="fa fa-indent"></i>');
  11. } else {
  12. $("body").attr("class", "showmenu");
  13. $(this).html('<i class="fa fa-dedent"></i>');
  14. }
  15. });
  16. }