I can’t understand the description, so please give me an expert answer
Normally, the browser will extract the corresponding elements from the URL of the current document to fill in the blanks in the relative URL
This sentence, I also don’t understand
how to formulate a url address. For example, if you use base to formulate it, you can call
pictures, music, etc. under a certain folder. You don’t need to fill in the complete folder. For the address, just write the picture name and song title, and it will automatically find it from the folder you specified above. The
Normally, the browser will extract the corresponding elements from the URL of the current document to fill in the gaps in the relative URL.
Use the
form> tags.
but the link placed after it will use a relative path. The path specified relative to base.
2: After using the base tag, the relative path of the link in the body will be relative to the path specified by base.
3: After using the base default target, the subsequent opening method will be opened in the method specified by base, unless the opening method is defined later.
Summary: base actually defines a default address and default target. All link elements after it will work.
head> and . All relative paths on your web pages will be preceded by the address pointed to by the base link when linking. We can use the href Uses the
The base element can specify the base URL of all links in the page
attribute in the <%
String path = request.getContextPath();
// 获得项目完全路径(假设你的项目叫myWork,那么获得到的地址就是 http://localhost:8080/myWork/):
String basePath = request.getScheme()+"://"+request.getServerName()+":"+request.getServerPort()+path+"/";
// 将 "项目路径basePath" 放入pageContext中
%>
<html>
<head>
<base href=" <%=basePath%>">
//base只能应用于标记<head>与</head>之间
</head>
// 这里我们就可以直接使用相对路径(即: 相对于base标签)
<a href="jsp/login.jsp">Login </a>
</html>
当我们去执行上面的那段JSP代码后,我们可以在浏览器中可以查看,他所返回给客户端的html代码:
执行完上述JSP后,所返回的html代码如下:
<html>
<head>
<base href="http://localhost:8080/myWork/">
</head>
// 设置了 <base>后,相对路径,相对于的就是base中的路径,而不再是浏览器地址的请求路径啦~~~
<a href="jsp/login.jsp">Login </a>
</html>
In other words, in this html file, all "relative links (for example: )" encountered are paths relative to base
(ie: http://localhost:8080/myWork/)
The above is the detailed content of An introduction to the role and use of the