Skip to content

这代码写的... #581

Open
Open
@PathFun

Description

@PathFun
    ```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_
      

Activity

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

      Development

      No branches or pull requests

        Participants

        @PathFun

        Issue actions

          这代码写的... · Issue #581 · Advanced-Frontend/Daily-Interview-Question