jsp代码永远高于js是从服务端返回的。以后才会执行js。
response.sendRedirect("../index.jsp")是服务端执行跳转的
你的跳转要用js的window.location.href来写就可以的
<%
out.print("<script type='text/javascript'>alert('添加失败!')window.location.href='../index.jsp'</script>")
%>
jsp代码永远高于js是从服务端返回的。以后才会执行js。
response.sendRedirect("../index.jsp")是服务端执行跳转的
你的跳转要用js的window.location.href来写就可以的
<%
out.print("<script type='text/javascript'>alert('添加失败!')window.location.href='../index.jsp'</script>")
%>