前端獲取當前路徑

2022-02-14 08:56:26 字數 776 閱讀 7945

//獲取當前視窗的url    

//獲取當前視窗的主機名 例如:http://localhost:8080       

window.location.host              

//獲取當前視窗的埠  例如: 8080  

window.location.port  

//獲取當前視窗的路徑 例如: /shopping/buycart.shtml  

window.location.pathname  

//獲取當前文件的url  

document.url  

//獲取引數  例如: ?skuid=510&amount=1  

window.location.search  

//跳出當前視窗,開啟新視窗  

window.open(url);  

document默示的是乙個文件物件,window默示的是乙個視窗物件,乙個視窗下可以有多個文件物件。

所以乙個視窗下只有乙個window.location.href,然則可能有多個document.url、document.location.href

window.location.href和document.location.href可以被賦值,然後跳轉到其它頁面,document.url只能讀不克不及寫

C C 獲取當前路徑

獲取當前工作目錄是使用函式 getcwd。cwd指的是 current working directory 這樣就好記憶了。函式說明 函式原型 char getcwd char buffer,int len 引數 buffer是指將當前工作目錄的絕對路徑copy到buffer所指的記憶體空間,len...

C C 獲取當前路徑

獲取當前工作目錄是使用函式 getcwd。cwd指的是 current working directory 這樣就好記憶了。函式說明 函式原型 char getcwd char buffer,int len 引數 buffer是指將當前工作目錄的絕對路徑copy到buffer所指的記憶體空間,len...

wince獲取當前路徑

在evc下沒有getcurrentdirectory 這個函式能方便地獲取當前工作路徑,所以我們只能通過getmodulefilename 函式的返回值來獲取當前的工作路徑.szpath 獲取的當前工作路徑 void getcurrentdirectory cstring szpath const ...