JSP 彈出對話方塊的方式總結

來源:互聯網
上載者:User

JSP 網頁在與使用者互動的過程中,有時需要彈出提示框,通知使用者一些資訊,如登入密碼錯誤等

在做JSP網頁項目中, 實踐並總結了三種有效方式

方式1: JSP前端

<script type="text/javascript" language="javascript">
alert("您還沒有登入,請登入...");
window.document.location.href="userlogin.html";
</script>

方式2: Java後台

public void popAlert() {

response.setCharacterEncoding("utf-8");
PrintWriter out = response.getWriter();
out.print("<script>alert('您還沒有登入,請登入...'); window.location='userlogin.html' </script>");
out.flush();
out.close();

}

方式3: Java後台  +  JSP前端

1) Java後台程式碼片段

public void popAlert() {

request.setAttribute("loginError", "您還沒有登入,請登入...");          // 設定錯誤屬性
request.getRequestDispatcher("userlogin.html").forward(request, response);

}


2) JSP前端程式碼片段

<%
String errorInfo = (String)request.getAttribute("loginError");         // 擷取錯誤屬性
if(errorInfo != null) {
%>
<script type="text/javascript" language="javascript">
alert("<%=errorInfo%>");                                            // 彈出錯誤資訊

window.location='userlogin.html' ;                            // 跳轉到登入介面
</script>
<%
}
%>

總結

三種方式,實質都是通過JavaScript彈出對話方塊,提示使用者密碼錯誤,當使用者點擊alert確定按鈕後,自動跳轉到登入介面userlogin.html


相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.