首页 > 代码库 > JS 判断是否为IP格式

JS 判断是否为IP格式

<html><head><title><a href=http://www.mamicode.com/‘http://js.zz5u.net‘>JavaScript用正则验证IP地址格式是否正确_网页代码站(www.6a8a.com)"javascript">function f_check_IP()    {  var ip = document.getElementById(‘reg_ip‘).value;   var re=/^(\d+)\.(\d+)\.(\d+)\.(\d+)$/;//正则表达式      if(re.test(ip))      {          if( RegExp.$1<256 && RegExp.$2<256 && RegExp.$3<256 && RegExp.$4<256)        return true;      }      alert("IP有误!");      return false;    }</script><form method="post" action="" onsubmit="return f_check_IP()">您的IP:<input type="text" id="reg_ip" name="reg_ip"><input type="submit" name="submit" value="http://www.mamicode.com/提交"></form><br /></body></html>

 

JS 判断是否为IP格式