Location - Web API 接口参考 编辑
Location
接口表示其链接到的对象的位置(URL)。所做的修改反映在与之相关的对象上。 Document
和 Window
接口都有这样一个链接的Location,分别通过 Document.location
和Window.location
访问。
属性
Location
接口不继承任何属性,但是实现了那些来自 URLUtils
的属性。
Location.href
- 包含整个URL的一个
DOMString
Location.protocol
- 包含URL对应协议的一个
DOMString
,最后有一个":"。 Location.host
- 包含了域名的一个
DOMString
,可能在该串最后带有一个":"并跟上URL的端口号。 Location.hostname
- 包含URL域名的一个
DOMString
。 Location.port
- 包含端口号的一个
DOMString
。 Location.pathname
- 包含URL中路径部分的一个
DOMString
,开头有一个“/"。
Location.search
- 包含URL参数的一个
DOMString
,开头有一个“?”
。 Location.hash
- 包含块标识符的
DOMString
,开头有一个“#”。
Location.username
- 包含URL中域名前的用户名的一个
DOMString
。 Location.password
- 包含URL域名前的密码的一个
DOMString
。 Location.origin
只读- 包含页面来源的域名的标准形式
DOMString
。
方法
Location
没有继承任何方法,但实现了来自URLUtils
的方法。
Location.assign()
- 加载给定URL的内容资源到这个Location对象所关联的对象上。
Location.reload()
- 重新加载来自当前 URL的资源。他有一个特殊的可选参数,类型为
Boolean
,该参数为true时会导致该方法引发的刷新一定会从服务器上加载数据。如果是false
或没有制定这个参数,浏览器可能从缓存当中加载页面。 Location.replace()
- 用给定的URL替换掉当前的资源。与
assign()
方法不同的是用replace()
替换的新页面不会被保存在会话的历史History
中,这意味着用户将不能用后退按钮转到该页面。 Location.toString()
- 返回一个
DOMString
,包含整个URL。 它和读取URLUtils.href
的效果相同。但是用它是不能够修改Location的值的。
例子
// Create anchor element and use href property for the purpose of this example
// A more correct alternative is to browse to the URL and use document.location or window.location
var url = document.createElement('a');
url.href = '/wiki/en-US/search?q=URL#search-results-close-container';
console.log(url.href); // /wiki/en-US/search?q=URL#search-results-close-container
console.log(url.protocol); // https:
console.log(url.host); // developer.mozilla.org
console.log(url.hostname); // developer.mozilla.org
console.log(url.port); // (blank - https assumes port 443)
console.log(url.pathname); // /en-US/search
console.log(url.search); // ?q=URL
console.log(url.hash); // #search-results-close-container
console.log(url.origin); // https://developer.mozilla.org
规范
Specification | Status | Comment |
---|---|---|
HTML Living Standard Location | Living Standard | No change from HTML5. |
HTML5 Location | Recommendation | Initial definition. |
浏览器兼容性
We're converting our compatibility data into a machine-readable JSON format. This compatibility table still uses the old format, because we haven't yet converted the data it contains. Find out how you can help!特性 | Chrome | Firefox (Gecko) | Internet Explorer | Opera | Safari (WebKit) |
---|---|---|---|---|---|
Basic support | (Yes) | (Yes) | (Yes) | (Yes) | (Yes) |
origin on Windows.location | ? | 21 (21) | ? | ? | ? |
origin on all location objects (but on Workers, that use WorkerLocation | ? | 26 (26) | ? | ? | ? |
username and password | ? | 26 (26) | ? | ? | ? |
searchParams | ? | 34 (34) | ? | ? | ? |
Feature | Android | Firefox Mobile (Gecko) | IE Phone | Opera Mobile | Safari Mobile |
---|---|---|---|---|---|
Basic support | (Yes) | (Yes) | (Yes) | (Yes) | (Yes) |
origin on Windows.location | ? | 21.0 (21) | ? | ? | ? |
origin on all location objects (but on Workers, that use WorkerLocation ) | ? | 26.0 (26) | ? | ? | ? |
username and password | ? | 26.0 (26) | ? | ? | ? |
searchParams | ? | 34.0 (34) | ? | ? | ? |
另见
- Two methods creating such an object:
Window.location
andDocument.location
.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论