Daily-Interview-Question icon indicating copy to clipboard operation
Daily-Interview-Question copied to clipboard

这代码写的...

Open PathFun opened this issue 3 years ago • 0 comments

    ```javascript

let url = 'https://www.baidu.com'; function searchUrl(url) { try { if (new URL(url) && (new URL(url).protocol === "http:" || new URL(url).protocol === "https:") && url.match(new RegExp(new URL(url).protocol + "//")).index === 0) return true } catch (err) { console.log("不是一个正确的网址"); } }; console.log(searchUrl(url))


_Originally posted by @yaodongyi in https://github.com/Advanced-Frontend/Daily-Interview-Question/issues/138#issuecomment-532032617_
      

PathFun avatar Jan 06 '23 01:01 PathFun