熱點推薦:
您现在的位置: 電腦知識網 >> 編程 >> Java編程 >> JSP教程 >> 正文

檢測字符的Javascript代碼

2022-06-13   來源: JSP教程 

  strNumber = formnumbervalue;
 
if (strNumber == )
 {
  alert(請輸入您的ID號!);
  formnumberfocus();
  return (false);
 }
 if (strNumberlength < || strNumberlength > )
 {
  alert(您的ID號長度不正確必須在 位之間!);
  formnumberfocus();
  return (false);
 }
 for (index=; index<strNumberlength; index++)
 {
  check = strNumbercharAt(index);
  if (!(digit(check) || alpha(check)))
  {
   alert(ID號只能使用字母或數字!);
   formnumberfocus();
   return false;
  }
 }

  //檢查輸入項是否為數字
function digit(check)
{
 return ((<=check) && (check<=));
}
//檢查輸入項是否為字母
function alpha(check)
{
 return (((a<=check) && (check<=z)) || ((A<=check) && (check<=Z)))
}
//>


From:http://tw.wingwit.com/Article/program/Java/JSP/201311/19403.html
    推薦文章
    Copyright © 2005-2022 電腦知識網 Computer Knowledge   All rights reserved.