在frame框架中例如在Index.jsp中
其中name=“top”意为上半部分,name = “main”为下半部分(主要部分)创建一个上半部分页面为top.jsp
<html>
<head>
<base target="top">
<title>My JSP 'top.jsp' starting page</title>
</head>
<body style="text-align: center;">
<h1>top</h1>
</body>
</html>
其中的作用是将top.jsp页面显示到该Index.jsp页面的上方
创建另一个页面main.jsp,即下半部分:
<html>
<head>
<base target="main">
<title>My JSP 'main.jsp' starting page</title>
</head>
<body style="text-align: center;">
<h1>main</h1>
</body>
</html>
其中的作用是将main.jsp页面显示到该Index.jsp页面的下方。
本人对base的简单理解,仅作为日志供本人参考。
若有意见,可私信修改或删除。