欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

登陆判断

程序员文章站 2022-07-09 21:43:13
...

如果有用户名密码,进入对应内容,否则返回登陆页

$('div#top').load('header.php', function () {
        navText("配置信息");
        var uname = sessionStorage['LoginName'];
        if (uname) {
            $('#welcome').html("欢迎回来" + uname);

        } else {
            $('.theme-popover-mask').fadeIn(100);
            $('.theme-popover').slideDown(200);
            setTimeout(function () {
                location.href = "login.html";
            }, 3000);
        }
    });
相关标签: 密码