您好,登錄后才能下訂單哦!
http://localhost:9980/login
base標簽:
<base href="XXX">
是為頁面上所有相對的URL地址,提供一個基準地址,即:
<a href="test.html">
1.如果這個鏈接存在于一個設定了base標簽的jsp頁面:<base href="http://127.0.0.1/project/">
訪問的結果:http://127.0.0.1/project/test.html
2.如果這個鏈接存在于一個沒有設定base標簽的jsp頁面:
訪問結果:http://localhost:9980/test.html
<a href="/test.html">
1.如果這樣的連接存在于一個設定了base標簽的jsp頁面:<base href="">http://127.0.0.1/project">
訪問結果:http://127.0.0.1/test.html
2.如果這樣的連接存在于一個沒有設定base標簽的jsp頁面:
訪問結果:http://localhost:9980/test.html
<a href="test.html">
1.如果這樣的連接存在于一個設定了base標簽的jsp頁面:<base href="http://127.0.0.1/project">
訪問結果:http://127.0.0.1/test.html
2.如果這樣的連接存在于一個沒有設定base標簽的jsp頁面:
訪問結果:http://localhost:9980/test.html
base標簽的數據來源:
<%
String path = request.getContextPath();
String basePath = request.getScheme()+"://"+request.getServerName()+":"+request.getServerPort()+path+"/";
%>
<base href="<%=basePath%>">
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。