重写history.pushState添加自定义事件

编程入门 行业动态 更新时间:2024-10-20 00:41:31

重写history.pushState添加<a href=https://www.elefans.com/category/jswz/34/1771438.html style=自定义事件"/>

重写history.pushState添加自定义事件

1. 添加自定义事件的方法

var event = new CustomEvent('xxx', { detail: {...略});

注意要dispatch一下:

window.dispatchEvent(event);

2. 使用自定义事件

// 监听路由变化
        window.addEventListener("my-popstate", ev => {
            console.log("my-popstate:", ev)
            const detail = ev.detail;

                ...略
        })
    

3. 重写history.pushState添加自定义事件

const oriPushState = history.pushState;
// 重写pushState
history.pushState = function (state, title, url) {// 触发原事件oriPushState.apply(history, [state, title, url]);// 自定义事件var event = new CustomEvent("my-popstate", {detail: {state,title,url}});window.dispatchEvent(event);
}

4. 使用"my-popstate"自定义事件:

// 监听路由变化listenerHistory() {// 导航的路由切换window.addEventListener("popstate", ev => {console.log("onpopstate:", ev)const url = location.pathname.endsWith(".html") ? "/" : location.pathname;// todo});// pushState或者replaceStatewindow.addEventListener("my-popstate", ev => {console.log("my-popstate:", ev)const detail = ev.detail;// todo})}

更多推荐

重写history.pushState添加自定义事件

本文发布于:2023-11-15 09:08:34,感谢您对本站的认可!
本文链接:https://www.elefans.com/category/jswz/34/1597200.html
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系,我们将在24小时内删除。
本文标签:自定义   重写   事件   pushState   history

发布评论

评论列表 (有 0 条评论)
草根站长

>www.elefans.com

编程频道|电子爱好者 - 技术资讯及电子产品介绍!