求把最后“欢迎回来”写成一个页面跳转的超链接!!!

丁宁0 发布于 2017/09/13 17:35
阅读 742
收藏 0

【开源中国 APP 全新上线】“动弹” 回归、集成大模型对话、畅读技术报告”

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">

<html xmlns="http://www.w3.org/1999/xhtml" >
<head>
    <meta charset="UTF-8">
    <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1"> 
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <meta http-equiv="pragma" content="no-cache">
    <meta http-equiv="cache-control" content="no-cache">
    <meta http-equiv="expires" content="0"> 
    <title>童谣啊</title>
    <link href="css/default.css" rel="stylesheet" type="text/css" />
    <!--必要样式-->
    <link href="css/styles.css" rel="stylesheet" type="text/css" />
    <link href="css/demo.css" rel="stylesheet" type="text/css" />
    <link href="css/loaders.css" rel="stylesheet" type="text/css" />
</head>
<body>
    <div class='login'>
      <div class='login_title'>
        <span>宝儿登录</span>
      </div>
      <div class='login_fields'>
        <div class='login_fields__user'>
          <div class='icon'>
            <img alt="" src='img/user_icon_copy.png'>
          </div>
          <input name="login" placeholder='用户名' maxlength="16" type='text' autocomplete="off" value="DTY"/>
            <div class='validation'>
              <img alt="" src='img/tick.png'>
            </div>
        </div>
        <div class='login_fields__password'>
          <div class='icon'>
            <img alt="" src='img/lock_icon_copy.png'>
          </div>
          <input name="pwd" placeholder='密码' maxlength="16" type='text' autocomplete="off">
          <div class='validation'>
            <img alt="" src='img/tick.png'>
          </div>
        </div>
        <div class='login_fields__password'>
          <div class='icon'>
            <img alt="" src='img/key.png'>
          </div>
          <input name="code" placeholder='验证码' maxlength="4" type='text' name="ValidateNum" autocomplete="off">
          <div class='validation' style="opacity: 1; right: -5px;top: -3px;">
          <canvas class="J_codeimg" id="myCanvas" onclick="Code();">对不起,您的浏览器不支持canvas,请下载最新版浏览器!</canvas>
          </div>
        </div>
        <div class='login_fields__submit'>
          <input type='button' value='登录'>
        </div>
      </div>
      <div class='success'>
      </div>
      <div class='disclaimer'>
      </div>
    </div>
    <div class='authent'>
      <div class="loader" style="height: 44px;width: 44px;margin-left: 28px;">
        <div class="loader-inner ball-clip-rotate-multiple">
            <div></div>
            <div></div>
            <div></div>
        </div>
        </div>
      <p>认证中...</p>
    </div>
    <div class="OverWindows"></div>
    
    <link href="layui/css/layui.css" rel="stylesheet" type="text/css" />
    
    <script type="text/javascript" src="js/jquery.min.js"></script>
    <script type="text/javascript" src="js/jquery-ui.min.js"></script>
    <script type="text/javascript" src='js/stopExecutionOnTimeout.js?t=1'></script>
    <script type="text/javascript" src="layui/layui.js"></script>
    <script type="text/javascript" src="js/Particleground.js"></script>
    <script type="text/javascript" src="Js/Treatment.js"></script>
    <script type="text/javascript" src="js/jquery.mockjax.js"></script>
    <script type="text/javascript">
        var canGetCookie = 0;//是否支持存储Cookie 0 不支持 1 支持
        var ajaxmockjax = 1;//是否启用虚拟Ajax的请求响 0 不启用  1 启用
        //默认账号密码
        
        var truelogin = "DTY";
        var truepwd = "love u";
        
        var CodeVal = 0;
        Code();
        function Code() {
            if(canGetCookie == 1){
                createCode("AdminCode");
                var AdminCode = getCookieValue("AdminCode");
                showCheck(AdminCode);
            }else{
                showCheck(createCode(""));
            }
        }
        function showCheck(a) {
            CodeVal = a;
            var c = document.getElementById("myCanvas");
            var ctx = c.getContext("2d");
            ctx.clearRect(0, 0, 1000, 1000);
            ctx.font = "80px 'Hiragino Sans GB'";
            ctx.fillStyle = "#E8DFE8";
            ctx.fillText(a, 0, 100);
        }
        $(document).keypress(function (e) {
            // 回车键事件  
            if (e.which == 13) {
                $('input[type="button"]').click();
            }
        });
        //粒子背景特效
        $('body').particleground({
            dotColor: '#E8DFE8',
            lineColor: '#133b88'
        });
        $('input[name="pwd"]').focus(function () {
            $(this).attr('type', 'password');
        });
        $('input[type="text"]').focus(function () {
            $(this).prev().animate({ 'opacity': '1' }, 200);
        });
        $('input[type="text"],input[type="password"]').blur(function () {
            $(this).prev().animate({ 'opacity': '.5' }, 200);
        });
        $('input[name="login"],input[name="pwd"]').keyup(function () {
            var Len = $(this).val().length;
            if (!$(this).val() == '' && Len >= 5) {
                $(this).next().animate({
                    'opacity': '1',
                    'right': '30'
                }, 200);
            } else {
                $(this).next().animate({
                    'opacity': '0',
                    'right': '20'
                }, 200);
            }
        });
        var open = 0;
        layui.use('layer', function () {
            var msgalert = '账号:' + truelogin + '<br/> 密码:' + truepwd;
            var index = layer.alert(msgalert, { icon: 6, time: 4000, offset: 't', closeBtn: 0, title: '友情提示', btn: [], anim: 2, shade: 0 });  
            layer.style(index, {
                color: '#777'
            }); 
            //非空验证
            $('input[type="button"]').click(function () {
                var login = $('input[name="login"]').val();
                var pwd = $('input[name="pwd"]').val();
                var code = $('input[name="code"]').val();
                if (login == '') {
                    ErroAlert('请输入您的账号');
                } else if (pwd == '') {
                    ErroAlert('请输入密码');
                } else if (code == '' || code.length != 4) {
                    ErroAlert('输入验证码');
                } else {
                    //认证中..
                    fullscreen();
                    $('.login').addClass('test'); //倾斜特效
                    setTimeout(function () {
                        $('.login').addClass('testtwo'); //平移特效
                    }, 300);
                    setTimeout(function () {
                        $('.authent').show().animate({ right: -320 }, {
                            easing: 'easeOutQuint',
                            duration: 600,
                            queue: false
                        });
                        $('.authent').animate({ opacity: 1 }, {
                            duration: 200,
                            queue: false
                        }).addClass('visible');
                    }, 500);

                    //登录
                    var JsonData = { login: login, pwd: pwd, code: code };
                    //此处做为ajax内部判断
                    var url = "";
                    if(JsonData.login == truelogin && JsonData.pwd == truepwd && JsonData.code.toUpperCase() == CodeVal.toUpperCase()){
                        url = "Ajax/Login";
                    }else{
                        url = "Ajax/LoginFalse";
                    }
                    
                    
                    AjaxPost(url, JsonData,
                                    function () {
                                        //ajax加载中
                                    },
                                    function (data) {
                                        //ajax返回 
                                        //认证完成
                                        setTimeout(function () {
                                            $('.authent').show().animate({ right: 90 }, {
                                                easing: 'easeOutQuint',
                                                duration: 600,
                                                queue: false
                                            });
                                            $('.authent').animate({ opacity: 0 }, {
                                                duration: 200,
                                                queue: false
                                            }).addClass('visible');
                                            $('.login').removeClass('testtwo'); //平移特效
                                        }, 2000);
                                        setTimeout(function () {
                                            $('.authent').hide();
                                            $('.login').removeClass('test');
                                            if (data.Status == 'ok') {
                                                //登录成功
                                                $('.login div').fadeOut(100);
                                                $('.success').fadeIn(1000);
                                                $('.success').html(data.Text);
                                                //跳转操作
                                                
                                            } else {
                                                AjaxErro(data);
                                            }
                                        }, 2400);
                                    })
                }
            })
        })
        var fullscreen = function () {
            elem = document.body;
            if (elem.webkitRequestFullScreen) {
                elem.webkitRequestFullScreen();
            } else if (elem.mozRequestFullScreen) {
                elem.mozRequestFullScreen();
            } else if (elem.requestFullScreen) {
                elem.requestFullscreen();
            } else {
                //浏览器不支持全屏API或已被禁用  
            }
        }  
        if(ajaxmockjax == 1){
            $.mockjax({  
                url: 'Ajax/Login',  
                status: 200,  
                responseTime: 50,          
                responseText: {"Status":"ok","Text":"登录成功<br /><br />欢迎回来<br />"}  
            }); 
            $.mockjax({  
                url: 'Ajax/LoginFalse',  
                status: 200,  
                responseTime: 50,          
                responseText: {"Status":"Erro","Erro":"账号名或密码或验证码有误"}
            });   
        }
    </script>

</body>
</html>
 

加载中
0
彭添
彭添

把欢迎回来换成  

<script>alert('不欢迎你回来 :-)');window.top.location = 'https://www.baidu.com';</script>

丁宁0
丁宁0
还是不行,能麻烦说的清楚一点吗,谢谢
0
彭添
彭添

 if(ajaxmockjax == 1){
            $.mockjax({  
                url: 'Ajax/Login',  
                status: 200,  
                responseTime: 50,          
                responseText: {"Status":"ok","Text":"登录成功<script>alert('不欢迎你回来 :-)');window.top.location = 'https://www.baidu.com';</script>"}  
            }); 
            $.mockjax({  
                url: 'Ajax/LoginFalse',  
                status: 200,  
                responseTime: 50,          
                responseText: {"Status":"Erro","Erro":"账号名或密码或验证码有误"}
            });   
        }

彭添
彭添
回复 @丁宁0 : 看 https://github.com/jakerella/jquery-mockjax onAfterSuccess 方法,所以你加上这个方法变成 {...省略..., responseText:xxxxxxxxxxxx, onAfterSuccess: your_redirect_func }就好了
丁宁0
丁宁0
回复 @彭添 : 上面那些就是所有的代码了,我也是正在学习这方面,我的同学们也都弄不懂您能看出哪里是回调函数,具体怎么写吗,麻烦您了,谢谢。
彭添
彭添
不知道你这个是什么框架,但是应该有基本的回调函数吧,在回调函数做跳转也可以
丁宁0
丁宁0
回复 @彭添 : 这个模板是我套用的,想在最后加个链接,但是写进链接可能就破坏原来的源码,页面显示不全,请问是怎么回事?
丁宁0
丁宁0
显示这个 "} }); $.mockjax({ url: 'Ajax/LoginFalse', status: 200, responseTime: 50, responseText: {"Status":"Erro","Erro":"账号名或密码或验证码有误"} }); }
下一页
OSCHINA
登录后可查看更多优质内容
返回顶部
顶部