搜尋

重設根目錄 <base>

<base> 是 HTML 裡「重設根目錄」的元素,該元素並不會在頁面裡顯示,主要作用可以設定「相對路徑的根目錄」,這篇教學會介紹 <base> 重設根目錄元素。

HTML 教學 - 重設根目錄 <base>

認識 <base>

<base> 是 HTML 裡裡「重設根目錄」的元素,該元素會放在 HTML <head> 元素裡,主要作用可以設定「相對路徑的根目錄」,一個網頁只會有一個 <base>

  • <base> 屬於「空元素」,只需要「起始標籤」。

以下方的 HTML 為例,如果沒有加入 <base>,則相對路徑是以「根目錄」為出發點,如果設定「/」等同沒有放入 <base>

<!DOCTYPE html>
<html>
<head>
<title>oxxo</title>
</head>
<body>
  <!-- 假設根目錄為 https://www.oxxostudio.tw -->

  <a href="apple.html">apple</a>
  <!-- 實際連結網址為:https://www.oxxostudio.tw/apple.html -->

  <br>
  <a href="banana.html">banana</a>
  <!-- 實際連結網址為:https://www.oxxostudio.tw/banana.html -->
</body>
</html>

如果加入 <base>,則相對路徑以 <base> 裡定義的 href 為出發點。

<!DOCTYPE html>
<html>
<head>
  <title>OXXOSTUDIO</title>
  <!-- 修改 base 的 href -->
  <base href="/ok/test/">
</head>
<body>
  <!-- 假設根目錄為 https://www.oxxostudio.tw -->

  <a href="apple.html">apple</a>
  <!-- 實際連結網址為:https://www.oxxostudio.tw/ok/test/apple.html -->

  <br>
  <a href="banana.html">banana</a>
  <!-- 實際連結網址為:https://www.oxxostudio.tw/ok/test/banana.html -->

  <br>
  <a href="/orange.html">orange</a>
  <!-- 因為 /orange.html 的寫法是指向根目錄 -->
  <!-- 實際連結網址為:https://www.oxxostudio.tw/orange.html -->
</body>
</html>

如果 <base> 的 herf 設定為「絕對路徑」( 某個網址 ),則根目錄就會轉換成該網址。

<!DOCTYPE html>
<html>
<head>
  <title>OXXOSTUDIO</title>
  <base href="https://www.google.com/test/ok/">
</head>
<body>
  <!-- 假設根目錄為 https://www.oxxostudio.tw -->

  <a href="apple.html">apple</a>
  <!-- 實際連結網址為:https://www.google.com/test/ok/apple.html -->

  <br>
  <a href="banana.html">banana</a>
  <!-- 實際連結網址為:https://www.google.com/test/ok/banana.html -->

  <br>
  <a href="/orange.html">orange</a>
  <!-- 因為 /orange.html 的寫法是指向根目錄 -->
  <!-- 實際連結網址為:https://www.google.com/orange.html -->
</body>
</html>

<base> 的 target 屬性

<base> 除了 href 的必要屬性外,也可以設定 target 屬性,target 屬性等同於 <a> 的 target,只要設定了 <base> 的 target,則頁面中所有 <a> 的預設 target 都會跟著改變 ( 除非有額外設定 target )。

<!DOCTYPE html>
<html>
<head>
  <title>OXXOSTUDIO</title>
  <base href="/" target="_blank">
</head>
<body>
  <a href="https://www.google.com">Google ( 開新視窗 )</a>
  <br>
  <a href="https://www.google.com" target="_top">Google ( 原視窗 )</a>
</body>
</html>

意見回饋

如果有任何建議或問題,可傳送「意見表單」給我,謝謝~

HTML 教學

基本介紹

認識 HTML 使用 HTML 編輯器

基礎知識

HTML 標籤與架構 HTML 格式規範 HTML 縮排與註解 HTML 元素顯示類型 HTML 元素屬性 HTML 特殊字元 HTML 色彩表示法 HTML 尺寸單位 HTML 網址與路徑 HTML 套用 CSS 樣式 HTML 套用 JavaScript 如何觀察 HTML 原始碼

網頁資訊元素

網頁標題 <title> 網頁資訊 <meta> 載入外部資源 <link> 重設根目錄 <base>

常用元素

標題 <h1>~<h6> 段落 <p> 行內容器 <span> 區塊容器 <div> 超連結 <a> 圖片 <img> 換行 <br> 水平分隔線 <hr> 內嵌頁框 <iframe>

文字樣式元素

粗體字 <strong><b> 斜體字 <em><i> 刪除線文字 <del> 插入 ( 底線 ) 文字 <ins> 小型文字 <small> 上標下標 <sup><sub> 凸顯文字 <mark> 引用 <blockquote><q> 預先格式化 <pre> 程式碼內容 <code> 收折文字內容 <details> 標示注音 <ruby><rt> 標示聯絡方式 <address> 標示鍵盤按鍵 <kbd> 標示時間日期 <time> 標示縮寫 <abbr> 標示可換行位置 <wbr>

表格&清單元素

無序清單 <ul><li> 有序清單 <ol><li> 自訂清單 <dl><dt><dd> 表格 <table><tr><td> 表格 <th><caption> 表格 <thead><tbody> 表格 <colgroup><col>

表單元素

表單 <form> 輸入 <input> 按鈕 <button> 多行文字輸入 <textarea> 下拉選單 <select> 進度條 <progress> 欄位標題 <label> 欄位資料清單 <datalist> 表單元素分組 <fieldset>

語意結構元素

頁首區塊 <header> 主要區塊 <main> 章節區塊 <section> 文章區塊 <article> 側邊欄區塊 <aside> 引用區塊 <figure> 導航連結區塊 <nav> 頁尾區塊 <footer>

影音&圖形元素

播放影片 <video> 播放聲音 <audio> 響應式圖片 <picture> 點陣畫布 <canvas> 向量圖形 <svg>

彈出視窗

alert() 警告視窗 confirm() 確認視窗 prompt() 輸入視窗

網頁嵌入應用

嵌入 YouTube 影片 嵌入 Google 地圖 嵌入 Google 日曆 嵌入 Google 表單 嵌入 Google 簡報 嵌入 Google 文件 嵌入 Google 試算表 嵌入 Google 試算表圖表 嵌入 Twitter 推文 嵌入 Facebook 粉絲團 嵌入 Facebook 影片 嵌入 Canva 簡報 嵌入 Scratch 創作