转载:window.location Cheatsheet | SamanthaMing.com
Looking for a site’s URL information, then the window.location object is for you! Use its properties to get information on the current page address or use its methods to do some page redirect or refresh 💫
https://www.samanthaming.com/tidbits/?filter=JS#2
1 | window.location.origin → 'https://www.samanthaming.com' |
# window.location Properties
window.location |
Returns |
|---|---|
.origin |
Base URL (Protocol + hostname + port number) |
.protocol |
Protocol Schema ( http : or https ) |
.host |
Domain name + port |
.hostname |
Domain name |
.port |
Port Number |
.pathname |
The initial ‘/’ followed by the Path |
.search |
? followed by Query String |
.hash |
# followed by the Anchor or Fragment identifier |
.href |
Full URL |
# Difference between host vs hostname
In my above example, you will notice that host and hostname returns the value. So why do these properties. Well, it has do with the port number. Let’s take a look.
URL without Port
1 https://www.samanthaming.com
1 | window.location.host; // 'www.samanthaming.com' |
URL with Port
1 https://www.samanthaming.com:8080
1 | window.location.host; // 'www.samanthaming.com:8080' |
So host will include the port number, whereas hostname will only return the host name.
# How to change URL properties
Not only can you call these location properties to retrieve the URL information. You can use it to set new properties and change the URL. Let’s see what I mean.
1 | // START 'www.samanthaming.com' |
Here’s the complete list of properties that you can change:
1 | // Example |
The only property you can’t set is window.location.origin . This property is read-only.
# Location Object
The window.location returns a Location object. Which gives you information about the current location of the page. But you can also access the Location object in several ways.
1 | window.location → Location |
The reason we can do this is because these are global variables in our browser.
# window.location vs location
All 4 of these properties point at the same Location object. I personally prefer window.location and would actually avoid using location . Mainly because location reads more like a generic term and someone might accidentally name their variable that, which would override the global variable. Take for example:
1 | // https://www.samanthaming.com |
I think that most developer is aware that window is a global variable. So you’re less likely to cause confusion. To be honest, I had no idea location was a global variable until I wrote this post 😅. So my recommendation is to be more explicit and use window.location instead 👍
Here’s my personal order of preference:
1 | // ✅ |
Of course, this is just my preference. You’re the expert of your codebase, there is no best way, the best way is always the one that works best for you and your team 🤓
# window.location Methods
window.location |
|
|---|---|
.assign() |
Navigates to the given URL |
.replace() |
Navigates to given URL & removes current page from the session history |
.reload() |
Reload the current page |
.toString() |
Returns the URL |
# window.location.toString
Here’s the definition from MDN
This method returns the USVString of the URL. It is a read-only version of Location.href
In other words, you can use it to get the href value from the
1 | // https://www.samanthaming.com |
As to which to use, I couldn’t find much information as to which is better; but if you do, please submit a PR on this 😊. But I did find a performance test on the difference.
JSPerf: Location toString vs Location href
One thing I want to note about these speed tests is that it is browser specific. Different browser and versions will render different outcome. I’m using Chrome, so the href came out faster then the rest. So that’s one I’ll use. Also I think it reads more explicit then toString() . It is very obvious that href will provide the URL whereas toString seems like something it being converted to a string 😅
# assign vs replace
Both of these methods will help you redirect or navigate to another URL. The difference is assign will save your current page in history, so your user can use the “back” button to navigate to it. Whereas with replace method, it doesn’t save it. Confused? No problem, I was too. Let’s walk through an example.
Assign
1 | 1. Open a new blank page |
Replace
1 | 1. Open a new blank place |
Current Page
I just need to emphasize the “current page” in the definition. It is the page right before you call assign or replace .
1 | 1. Open a new blank place |
# How to Do a Page Redirect
By now, you know we can change the properties of the window.location by assigning a value using = . Similarly, there are methods we can access to do some actions. So in regards to “how to redirect to another page”, well there are 3 ways.
1 | // Setting href properties |
# replace vs assign vs href
All three does redirect, the difference has to do with browser history. href and assign are the same here. It will save your current page in history, whereas replace won’t. So if you prefer creating an experience where the navigation can’t press back to the originating page, then use replace 👍
So the question now is href vs assign . I guess this will come to personal preference. I like the assign better because it’s a method so it feels like I’m performing some action. Also there’s an added bonus of it being easier to test. I’ve been writing a lot of Jest tests, so by using a method, it makes it way easier to mock.
1 | window.location.assign = jest.fn(); |