记一次网页挽留框功能实现
2021-08-24 本文已影响0人
德德de_前端攻城狮
history.pushState(null, null, document.URL),
window.addEventListener("popstate", (function() {
//retainModel(); 展示内容
//clickCount 触发条件
clickCount++,
clickCount < 3 ? history.pushState(null, null, document.URL) : history.back()
}
));