base 標籤
base 標籤是用來設定網頁中連結的 base URL 跟 base target,寫在 head 標籤內。
base url
<base href="https://www.wingzero.tw/">
當設定 base URL 後,頁面內如果有超連結:
<a href="life">介紹</a>
就會自動連結到
https://www.wingzero.tw/life
而不是原本同網域內的頁面。
base target
<base href="https://www.wingzero.tw/" target="_blank">
有設定 base target 的話,預設的超連結就會依據該設定的 target 調整,比如說設定了 _blank 後預設的超連結都會開在新頁籤。