06 2022 档案
摘要://防止页面后退 history.pushState(null, null, document.URL); window.addEventListener('popstate', function () { history.pushState(null, null, document.URL); }
阅读全文
摘要:https://www.macwk.com/soft/network
阅读全文
摘要:/** * 防止重覆点击 * @param timer callBack * @returns 自执行函数 */ declare global { interface Window { lastTime: any } } export const preventCliks = (callBack:
阅读全文