代码为jq代码:
下列实例中back是一个class,用来判断导航是否被点开。!$(this).hasClass(‘back’)这个状态下,导航默认是关闭状态的。

$(".toggle-btn").on("click", function (e) {
            if (!$(this).hasClass('back')) {
                $(this).addClass('back');
                $("html").css({
                    "height:": "100%",
                    "overflow-y": "hidden",
                    "position": "fixed"
                });
            } else {
                $(this).removeClass('back');
                $("html").css({
                    "height:": "auto",
                    "overflow-y": "auto",
                    "position": "static"
                });
            }
        });