web.xml配置
<welcome-file-list>
<welcome-file>index.jsp</welcome-file>
</welcome-file-list>index.jsp
<%@ page language="java" contentType="text/html; charset=UTF-8"
pageEncoding="UTF-8"%>
<%@ include file="./WEB-INF/views/core/include.jsp"%>
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>首页跳转</title>
<script src="${js}/common/jquery-3.2.1.min.js"></script>
<script>
(function ($) {
$(document).ready(function () {
window.location.href="/index";//首页链接
});
})(jQuery);
</script>
</head>
<body>
</body>
本文介绍了一个简单的Web应用首页跳转实现方式,通过web.xml配置欢迎页面,并使用jQuery进行页面加载后的自动跳转。
3712

被折叠的 条评论
为什么被折叠?



