当前位置:   article > 正文

如何用JS校验HTTP和HTTPS地址_js校验网址

js校验网址

如何用JS校验HTTP和HTTPS地址

当我们需要验证用户输入的网址时,经常需要校验是否为合法的HTTP或HTTPS地址。下面是一些JS代码,可以用来验证HTTP和HTTPS地址。

验证HTTP地址

function isValidHttpUrl(string) {
  let url;
  try {
    url = new URL(string);
  } catch (_) {
    return false;
  }
  return url.protocol === "http:" || url.protocol === "https:";
}
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9

使用该函数来检查HTTP地址是否有效:

isValidHttpUrl("<http://example.com>"); // true
isValidHttpUrl("<https://example.com>"); // true
isValidHttpUrl("<ftp://example.com>"); // false
  • 1
  • 2
  • 3

验证HTTPS地址

function isValidHttpsUrl(string) {
  let url;
  try {
    url = new URL(string);
  } catch (_) {
    return false;
  }
  return url.protocol === "https:";
}
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9

使用该函数来检查HTTPS地址是否有效:

isValidHttpsUrl("<https://example.com>"); // true
isValidHttpsUrl("<http://example.com>"); // false
isValidHttpsUrl("<ftp://example.com>"); // false
  • 1
  • 2
  • 3

以上JS代码可以很方便地验证HTTP和HTTPS地址的有效性。希望对你有所帮助。

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/很楠不爱3/article/detail/731767
推荐阅读
相关标签
  

闽ICP备14008679号