JS检测文本框中输入的IP地址是不是有效
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了JS检测文本框中输入的IP地址是不是有效相关的知识,希望对你有一定的参考价值。
参考技术A JS判断用户输入的IP地址是否正确,唯一不足的是不能动态实现,需要手动验证,运用正则的机理,判断是否是数字、是否是255以内的数字、是否是不超过三个字符的一个点。用js检测文本框中输入的是否符合条件并有错误和正确提醒
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>捕获异常</title> </head> <script type="text/javascript"> function my_func(){ try{ x=document.getElementById("input_id").value; alert(x); if(x==""||x==null) throw "非空"; if(isNaN(x)) throw "必须是数字"; if(x<5) throw "数字太小"; if(x>10) throw "数字太大"; else throw "输入正确"; }catch(err){ document.getElementById("demo").innerHTML="提示:"+err; } } </script> <body> <p>请输入5——10之间的数字</p> <input type="text" id="input_id"> </input> <button type="button" id="button_id" onclick="my_func()">确定</button> <p id = "demo"></p> </body> </html>
以上是关于JS检测文本框中输入的IP地址是不是有效的主要内容,如果未能解决你的问题,请参考以下文章