在web首次访问页面时怎么先加载action中数据
在index.jsp 中使用:
<%@ page contentType="text/html; charset=GBK"%>
<html>
?<head>
??? <script type="text/javascript">
???????? window.onload=function()
????????? {
????????????? top.location.href="<%=request.getContextPath()%>/account/login.action";
?????????? }
?? </script>
?</head>
?<body>
?</body>
</html>