您好,登錄后才能下訂單哦!
在TypeScript中使用window.location
對象和在JavaScript中使用它是一樣的。window.location
對象包含當前窗口的URL信息,可以用來獲取和設置當前頁面的URL。
下面是一些常見的用法:
const currentUrl: string = window.location.href;
console.log(currentUrl);
window.location.href = "https://example.com";
const protocol: string = window.location.protocol;
const host: string = window.location.host;
const pathname: string = window.location.pathname;
const search: string = window.location.search;
const hash: string = window.location.hash;
console.log(protocol);
console.log(host);
console.log(pathname);
console.log(search);
console.log(hash);
window.location.reload();
需要注意的是,在TypeScript中使用window.location
對象時,應該確保window
對象已經定義。可以通過使用window
對象的類型斷言來避免編譯器報錯:
const location = (window as any).location;
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。