NavigationHistoryEntry:url 属性
url
是 NavigationHistoryEntry
接口的只读属性,它返回此历史记录条目的绝对 URL。如果该条目对应于与当前条目不同的 Document(例如 sameDocument
属性为 false
),并且该 Document 是使用设置为 no-referrer
或 origin
的 Referrer-Policy
标头获取的,则该属性返回 null
。如果当前文档未完全激活,则返回空字符串。
值
表示 URL 的字符串或 null
。
示例
js
const current = navigation.currentEntry;
console.log(current.url);
规范
规范 |
---|
HTML 标准 # dom-navigationhistoryentry-url-dev |
浏览器兼容性
BCD 表仅在启用 JavaScript 的浏览器中加载。
另请参阅
- 现代客户端路由:Navigation API
- Navigation API 解释器
- Domenic Denicola 的 Navigation API 实时演示