BootstrapDialog 应用 实例<一>addSubmitConfirm

<button type="button" class="btn btn-sm btn-primary" aria-label="Left Align" onclick="clickLogOut();">
                         <span class="glyphicon glyphicon-off" aria-hidden="true"></span>&nbsp;登出</s:text>
                        </button>

 

 function clickLogOut() {
        var message = "<s:text name='rvr.popup.disconnectionKo' />";
        addSubmitConfirm(message,logout);
    }

    function logout(){
        window.location.href = $("#contextPath").val()+ "logout.action";
    }

 

你可能感兴趣的:(Web)