You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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:
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: