---
title: 轻量登录
category: biz
---
<h3>登录后刷新页面</h3>
<p>目前轻量登录框引用的还是老样式</p>
{{#snippet}}
<link rel="stylesheet" href="/dist/css/pop-old.css">
<span class="medi-btn"><input name="" type="button" value="默认登录" id="authbox-default" class="stress-btn"></span>
<script>
    DP.provide("main::authbox",function(D,authbox){
        // 登录成功的默认行为为刷新当前页面
        $("#authbox-default").on("click",function(){
            authbox();
        });
    });
</script>
{{/snippet}}

<h3>登录后执行callback</h3>
{{#snippet}}
<span class="medi-btn"><input name="" type="button" value="点击登录" id="authbox-callback" class="stress-btn"></span>
<script>
    DP.provide("main::authbox",function(D,authbox){
        $("#authbox-callback").on("click",function(){
            authbox("要干嘛干嘛",function(){
                alert("登录成功");
            });
        });
    });
</script>
{{/snippet}}
