We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
```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_
The text was updated successfully, but these errors were encountered:
No branches or pull requests
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))
The text was updated successfully, but these errors were encountered: