当前位置:  技术问答>java相关

如何检查Text中输入的是正确的日期,即数据合法性检查???

    来源: 互联网  发布时间:2015-02-07

    本文导语:  if (s1.length()!=8) {     sr="The input :"+s1+" length must be 8 and yyyymmdd type."; } else {//add code to do check the date or time type is well or not. } | 用VbScript的IsDate检查吧,Js可以调用Vb的 Function ValidDate(str) Va...

if (s1.length()!=8)
{
    sr="The input :"+s1+" length must be 8 and yyyymmdd type.";
}
else
{//add code to do check the date or time type is well or not.
}

|
用VbScript的IsDate检查吧,Js可以调用Vb的

Function ValidDate(str)
ValidDate = IsDate(str)
End Function


var str1 = "2001-02-28", str2 = "2001-02-29";
alert(str1 + " is valid date? " + ValidDate(str1));
alert(str2 + " is valid date? " + ValidDate(str2));


|
楼上洗咩甘麻烦啊,用正则表达式咪得罗。
function validateUSDate( strValue ) {
/************************************************
DESCRIPTION: Validates that a string contains only 
    valid dates with 2 digit month, 2 digit day, 
    4 digit year. Date separator can be ., -, or /.
    Uses combination of regular expressions and 
    string parsing to validate date.
    Ex. mm/dd/yyyy or mm-dd-yyyy or mm.dd.yyyy
    
PARAMETERS:
   strValue - String to be tested for validity
   
RETURNS:
   True if valid, otherwise false.
   
REMARKS:
   Avoids some of the limitations of the Date.parse()
   method such as the date separator character.
*************************************************/
  var objRegExp = /^d{1,2}(-|/|.)d{1,2}1d{4}$/
 
  //check to see if in correct format
  if(!objRegExp.test(strValue))
    return false; //doesn't match pattern, bad date
  else{
    var strSeparator = strValue.substring(2,3) //find date separator
    var arrayDate = strValue.split(strSeparator); //split date into month, day, year
    //create a lookup for months not equal to Feb.
    var arrayLookup = { '01' : 31,'03' : 31, '04' : 30,'05' : 31,'06' : 30,'07' : 31,
                        '08' : 31,'09' : 30,'10' : 31,'11' : 30,'12' : 31}
    var intDay = parseInt(arrayDate[1]); 

    //check if month value and day value agree
    if(arrayLookup[arrayDate[0]] != null) {
      if(intDay 

    
 
 
 
本站(WWW.)旨在分享和传播互联网科技相关的资讯和技术,将尽最大努力为读者提供更好的信息聚合和浏览方式。
本站(WWW.)站内文章除注明原创外,均为转载、整理或搜集自网络。欢迎任何形式的转载,转载请注明出处。












  • 相关文章推荐
  • 红帽RHEL下安装docker依赖性检查
  • 最近win2000启动时总提示检查linux所在分区,让它检查就会狂删linux文件,为何?在线!
  • 通过docker ps命令检查运行中的docker镜像
  • 网页链接检查 LinkChecker
  • Ubuntu Trusty 14.04 (LTS) 下面安装docker及依赖关系检查
  • 死链接检查软件 Xenu
  • 请教关于编译时检查的问题
  • 网站链接检查程序 gurlchecker
  • IE拼写检查插件 ieSpell
  • Java代码检查工具 JLint
  • epoll有必要检查EPOLLOUT事件么
  • 资源泄漏检测工具valgrind如何检查不退出程序的泄漏情况
  • Java 拼写检查库 JOrtho
  • CentOS 5.4每次开机检查磁盘,然后不停重启
  • fsck检查出错(急)
  • Java代码检查 Checkstyle
  • JavaScript代码质量检查 JSHint
  • CSS代码检查工具 CSS Lint
  • linux怎么跳过新硬件的检查
  • 怎样在计算机关机前屏蔽它检查软驱的程序?
  • applet为什么运行时检查软驱?


  • 站内导航:


    特别声明:169IT网站部分信息来自互联网,如果侵犯您的权利,请及时告知,本站将立即删除!

    ©2012-2021,,E-mail:www_#163.com(请将#改为@)

    浙ICP备11055608号-3