如果你想取得網站的URL訊息,那麼window.location
物件什麼很適合你!使用其屬性來獲取有關當前頁面地址的信息,或使用其方法進行某些頁面重定向或刷新
window.location.origin → '"https://segmentfault.com' .protocol → 'https:' .host → 'segmentfault.com' .hostname → 'segmentfault.com' .port → '' .pathname → '/search' .search → '?q=前端小智' .hash → '#2' .href → 'https://segmentfault.com/search?q=前端小智#2'
window.location.assign('url') .replace('url') .reload() .toString()
window.location | 傳回值 |
---|---|
#.origin | 網站主位址(協定主機名稱埠) |
.protocol | #協定架構(http: 或htts: ) |
.host | |
.port | |
##.pathname | 最前頁的'/' 後面跟的路徑 |
.search | ? 後面跟著的查詢字串 |
? 後面跟著的查詢字串 |
#.href
完整網址
host 和hostname 的差異
在上面的範例中,你可能注意到hostnamehost
和
傳回相同的值。那為什麼要這些屬性。好吧,這與連接埠號碼有關,讓我們來看看。 沒有連接埠的URL
#https://segmentfault.com/search
<div class="code" style="position:relative; padding:0px; margin:0px;"><pre data-from="code-for-outside" class="brush:js;toolbar:false;">window.location.host; // 'segmentfault.com'
window.location.hostname; // 'segmentfault.com'
window.location.port; // ''</pre><div class="contentsignin">登入後複製</div></div>
帶連接埠的URL
window.location.host; // 'segmentfault.com:8080' window.location.hostname; // 'segmentfault.com' window.location.port; // '8080'
因此,
host將包含連接埠號,而
hostname將只傳回主機名稱。
// 开始 'https://segmentfault.com/' window.location.pathname = '/tidbits'; // 设置 pathname // 结果 'https://segmentfault.com/tidbits'
下面是你可以更改的屬性的完整列表<div class="code" style="position:relative; padding:0px; margin:0px;"><pre data-from="code-for-outside" class="brush:js;toolbar:false;">// 事例
window.location.protocol = 'https'
.host = 'localhost:8080'
.hostname = 'localhost'
.port = '8080'
.pathname = 'path'
.search = 'query string' // (这里不用写 `?`)
.hash = 'hash' // (这里不用写 `#`)
.href = 'url'</pre><div class="contentsignin">登入後複製</div></div>
唯一不能設定的屬性是window.location.origin
,此屬性是唯讀的。
window.location
傳回一個
Location物件。它為我們提供有關頁面當前地址的資訊。但是我們也可以透過幾種方式存取
Location
window.location → Location window.document.location → Location document.location → Location location → Location
上面四個屬性都指向同一個 | |
---|---|
location | 。主要是因為location | 看起來像一個普通變量,並且我們有時可能會不小心將其命名為變量,這將覆蓋全域變數。舉個例子:
window | 是一個全域變數。這樣就不太可能造成混淆。老實說,直到我寫了這篇文章,我才知道location | 是全域變數。建議大家多使用
window.location 方法 | |
根据 MDN :
此方法返回 URL 的 USVString,它是 Location.href 的只读版本。
换句话说,我们可以这样得到 href
的值:
// https://www.samanthaming.com window.location.href; // https://www.samanthaming.com window.location.toString(); // https://www.samanthaming.com
这两种方法都是重定向或导航到另一个URL。区别在于assign
是将当前页面保存在历史记录中,因此用户可以使用“后退”按钮导航到该页面。而使用replace
方法时,不会保存它。让我们来看一个例子。
Assign
1. 打开一个新的空白页 2. 输入 www.samanthaming.com (当前页) 3. 使用 `window.location.assign('https://www.w3schools.com')` 载入新页面 4. 按 "返回上一页" 5. 返回到了 ???? www.samanthaming.com
Replace
1. 打开一个新的空白页 2. 输入 www.samanthaming.com (当前页) 3. 使用 `window.location.assign('https://www.w3schools.com')` 载入新页面 4. 按 "返回上一页" 5. 返回到一个空白页
如何重定向到另一个页面,有3种方法。
window.location.href = 'https://www.samanthaming.com'; window.location.assign('https://www.samanthaming.com'); window.location.replace('https://www.samanthaming.com');
这三个都可以重定向,区别在于浏览器的历史记录。href
和assign
会把当前页面保存在历史记录中,而replace
则不会。因此,如果你想创建一种导航无法回到原始页面的体验,请使用replace
????
现在的问题是href
与assign
。我更喜欢assign
,因为它是一种方法,因此感觉好像我正在执行一些操作。还有一个额外的好处是它更易于测试。我已经编写了许多Jest
测试,因此通过使用一种方法,它使其更易于模拟。
window.location.assign = jest.fn(); myUrlUpdateFunction(); expect(window.location.assign).toBeCalledWith('http://my.url');
最终希望备忘单,希望能对你有所帮助,在需要的时候,能快速给你带来答案。谢谢大家的观看。
英文原文地址:https://morioh.com/p/b444d291bdfb
作者:Samantha Ming
译者:前端小智
更多编程相关知识,请访问:编程入门!!
以上是詳解JS中的window.location物件(備忘單)的詳細內容。更多資訊請關注PHP中文網其他相關文章!