我想知道如何在我从一页重定向到另一页之前实现警报。
我的代码:(sciptlet)
<%
if(condition)
{
// alert here. before redirecting other page.
// now redirect here as fallow.
response.sendRedirect("sem-duration_old.jsp");
}
%>
我试过这个它不起作用:
<%
if(condition)
{
%>
<script>
alert(" we are going to some other page" );
</script>
<%
response.sendRedirect("semduration_old.jsp");
}
%>