天下网吧 >> 网吧天地 >> 网吧技术 >> 网吧安全 >> 正文

提供几个有用的Javascript验证脚本

2008-2-18赛迪网佚名

  这里给大家提供几个有用的Javascript验证脚本,以下是代码片段,供大家参考。

   

  function isNum(num,low,hi) {
if(isNaN(num)||num<low||num>hi)return false;
return true;
}

  function isValidIP(v) {
nums=v.split(".");
if(nums.length!=4)return false;
for(j=0;j<4;j++){
if(!isNum(nums[j],0,255))return false;
}
return true;
}

  function checkIP(Object,Desc,MaybeEmpty)
{
var strValue= Object.value;

if(MaybeEmpty){
if(strValue.length ==0){
return true;
}
}

if(isValidIP(strValue)==false)
{
alert(Desc + " Format Error!");
Object.focus();
return false;
}
return true;
}

  function checkPort(Object,Desc,lowest,MaybeEmpty)
{

   var pattern=/^\d{4,5}$/;
var strValue= Object.value;


if(MaybeEmpty){
if(strValue.length ==0){
return true;
}
}

if(strValue.match(pattern) == null)
{
alert(Desc + " Format Error!");
Object.focus();
return false;
}

if (strValue<lowest || strValue >65535)
{
alert(Desc + " Format Error!");
Object.focus();
return false;
}

return true;
}

  function checkFitLongStr(Object,Desc,MaybeEmpty)
{

   var pattern=/^\S{0,25}$/;
var strValue= Object.value;

if(MaybeEmpty){
if(strValue.length ==0){
return true;
}
}
if(strValue.match(pattern) == null)
{
alert(Desc + " Format Error!");
Object.focus();
return false;
}

return true;
}

  function checkFitLongNum(Object,Desc,MaybeEmpty)
{

   var pattern=/^\d{0,8}$/;
var strValue= Object.value;

if(MaybeEmpty){
if(strValue.length ==0){
return true;
}
}
if(strValue.match(pattern) == null)
{
alert(Desc + " Format Error!");
Object.focus();
return false;
}

return true;
}

  function checkGC(Object,Desc)
{
var pattern = /^\-{0,1}\d{1,2}$/
var strValue = Object.value;
if (strValue.length ==0){
return true;
}

if(strValue.match(pattern) == null)
{
alert(Desc + " Format Error!");
Object.focus();
return false;
}

if (strValue < -12 ||strValue > 18)
{
alert(Desc + " Format Error!");
Object.focus();
return false;
}
return true;
}

欢迎访问最专业的网吧论坛,无盘论坛,网吧经营,网咖管理,网吧专业论坛https://bbs.txwb.com

关注天下网吧微信,了解网吧网咖经营管理,安装维护:


本文来源:赛迪网 作者:佚名

声明
本文来源地址:0
声明:本站所发表的文章、评论及图片仅代表作者本人观点,与本站立场无关。若文章侵犯了您的相关权益,请及时与我们联系,我们会及时处理,感谢您对本站的支持!联系Email:support@txwb.com.,本站所有有注明来源为天下网吧或天下网吧论坛的原创作品,各位转载时请注明来源链接!
天下网吧·网吧天下
  • 本周热门
  • 本月热门
  • 阅读排行