NavigationCurrentEntryChangeEvent:from 属性
from
是 NavigationCurrentEntryChangeEvent
接口的只读属性,它返回导航离开的 NavigationHistoryEntry
。
值
一个 NavigationHistoryEntry
对象。
示例
js
navigation.addEventListener("currententrychange", (event) => {
console.log(event.from);
});
规范
规范 |
---|
HTML 标准 # dom-navigationcurrententrychangeevent-from-dev |
浏览器兼容性
BCD 表仅在启用了 JavaScript 的浏览器中加载。
另请参阅
- 现代客户端路由:导航 API
- 导航 API 解释器
- Domenic Denicola 的 导航 API 实时演示