NavigationCurrentEntryChangeEvent:navigationType 属性
Limited availability
This feature is not Baseline because it does not work in some of the most widely-used browsers.
NavigationCurrentEntryChangeEvent
接口的 navigationType
只读属性返回导致导航更改的导航类型。如果更改是由于 Navigation.updateCurrentEntry()
而发生的,则该属性可能为 null
。
值
表示导航类型的枚举值。可能的值包括:
push
:导航到新位置,导致新条目被推送到历史记录列表中。reload
:重新加载Navigation.currentEntry
。replace
:用新历史记录条目替换Navigation.currentEntry
。此新条目将重用相同的key
,但分配不同的id
。traverse
:浏览器从一个现有历史记录条目导航到另一个现有历史记录条目。
示例
js
navigation.addEventListener("currententrychange", (event) => {
console.log(event.navigationType);
});
规范
Specification |
---|
HTML # dom-navigationcurrententrychangeevent-navigationtype-dev |
浏览器兼容性
BCD tables only load in the browser
参见
- 现代客户端路由:导航 API
- 导航 API 说明
- Domenic Denicola 的导航 API 在线演示