我在我的Servlet中使用以下代码来设置属性confirmMsg:
req.setAttribute("confirmMsg", "Update Values");
这个我转发给 JSP
RequestDispatcher rd = req.getRequestDispatcher("displayDetails.jsp");
rd.forward(req, resp);
在我的 JSP 中,我需要在页面加载时显示消息。
<body onload = "showConfirmMsg();">
// .....
</body>
我应该在以下函数中做什么,以便显示消息 onload 本身?
function showConfirmMsg() {
// Code to show the alert box onload
}