2023年8月25日

JS 捕捉浏览器关闭事件

摘要: function closeWin() { debugger } 阅读全文

posted @ 2023-08-25 14:49 糯米白白 阅读(130) 评论(0) 推荐(0) 编辑

JS 验证URL是否有效

摘要: ``` function isValidHttpUrl(string) { try { const newUrl = new URL(string); return newUrl.protocol 'http:' || newUrl.protocol 'https:'; } catch (err) 阅读全文

posted @ 2023-08-25 14:47 糯米白白 阅读(5) 评论(0) 推荐(0) 编辑

导航