login.html 638 字节
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>login</title>
    <script src="https://code.jquery.com/jquery-3.0.0.min.js"></script>
</head>
<body>
<button id="oneClickLogin">login</button>
<script>
    $(function() {
        $('#oneClickLogin').on('click',function() {
            $.ajax({
                type: 'GET', //请求的方式
                url: '/loginRedirect', // 请求的URL地址
                success: function(res) { //请求成功之后的回调函数
                    window.open(res,'_blank')
                }
            })

        })
    })
</script>
</body>
</body>
</html>