You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
ECOM/untitled/web/b.jsp

28 lines
712 B

<%--
Created by IntelliJ IDEA.
User: 12762
Date: 2025/4/22
Time: 下午2:14
To change this template use File | Settings | File Templates.
--%>
<%@ page language="java" contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%>
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Page B</title>
<script>
function includePage() {
setTimeout(function() {
document.getElementById('includedContent').style.display = 'block';
}, 5000);
}
</script>
</head>
<body onload="includePage()">
<h1>这是 B 页面的内容</h1>
<div id="includedContent" style="display: none;">
<jsp:include page="a.jsp" />
</div>
</body>
</html>