DIV CSS 佈局教程網

 DIV+CSS佈局教程網 >> 網頁腳本 >> HTML基礎知識 >> HTML和Xhtml >> HTML相對路徑 上級目錄及下級目錄的寫法
HTML相對路徑 上級目錄及下級目錄的寫法
編輯:HTML和Xhtml     
如何表示上級目錄
../表示源文件所在目錄的上一級目錄,../../表示源文件所在目錄的上上級目錄,以此類推。
假設info.html路徑是:c:\Inetpub\wwwroot\sites\blabla\info.html
假設index.html路徑是:c:\Inetpub\wwwroot\sites\index.html
在info.html加入index.html超鏈接的代碼應該這樣寫:
<a href = "../index.html">index.html</a>
假設info.html路徑是:c:\Inetpub\wwwroot\sites\blabla\info.html
假設index.html路徑是:c:\Inetpub\wwwroot\index.html
在info.html加入index.html超鏈接的代碼應該這樣寫:
<a href="../../../index.html">index.html</a>
假設info.html路徑是:c:\Inetpub\wwwroot\sites\blabla\info.html
假設index.html路徑是:c:\Inetpub\wwwroot\sites\wowstory\index.html
在info.html加入index.html超鏈接的代碼應該這樣寫:
<a href = "../wowstory/index.html">index.html</a>
如何表示下級目錄引用下級目錄的文件,直接寫下級目錄文件的路徑即可。假設info.html路徑是:c:\Inetpub\wwwroot\sites\blabla\info.html假設index.html路徑是:c:\Inetpub\wwwroot\sites\blabla\html\index.html在info.html加入index.html超鏈接的代碼應該這樣寫:<a href = "html/index.html">index.html</a>
假設info.html路徑是:c:\Inetpub\wwwroot\sites\blabla\info.html
假設index.html路徑是:c:\Inetpub\wwwroot\sites\blabla\html\tutorials\index.html
在info.html加入index.html超鏈接的代碼應該這樣寫:
<a href = "html/tutorials/index.html">index.html</a>
XML學習教程| jQuery入門知識| AJAX入門| Dreamweaver教程| Fireworks入門知識| SEO技巧| SEO優化集錦|
Copyright © DIV+CSS佈局教程網 All Rights Reserved