如果给定的字符串是绝对URL,则返回 true
;否则返回 false
。
使用正则表达式来测试字符串是否是绝对URL。
const isAbsoluteURL = str => /^[a-z][a-z0-9+.-]*:/.test(str);
isAbsoluteURL('https://google.com'); // true isAbsoluteURL('ftp://www.myserver.net'); // true isAbsoluteURL('/foo/bar'); // false