赞
踩
当我们需要验证用户输入的网址时,经常需要校验是否为合法的HTTP或HTTPS地址。下面是一些JS代码,可以用来验证HTTP和HTTPS地址。
function isValidHttpUrl(string) {
let url;
try {
url = new URL(string);
} catch (_) {
return false;
}
return url.protocol === "http:" || url.protocol === "https:";
}
使用该函数来检查HTTP地址是否有效:
isValidHttpUrl("<http://example.com>"); // true
isValidHttpUrl("<https://example.com>"); // true
isValidHttpUrl("<ftp://example.com>"); // false
function isValidHttpsUrl(string) {
let url;
try {
url = new URL(string);
} catch (_) {
return false;
}
return url.protocol === "https:";
}
使用该函数来检查HTTPS地址是否有效:
isValidHttpsUrl("<https://example.com>"); // true
isValidHttpsUrl("<http://example.com>"); // false
isValidHttpsUrl("<ftp://example.com>"); // false
以上JS代码可以很方便地验证HTTP和HTTPS地址的有效性。希望对你有所帮助。
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。