javaScript通用数据类型校验函数(7)

来源:asp之家 时间:2009-07-06 12:49:00 

 判断当前对象及其父对象是否可见

function checkPrVis(obj){   
    var pr=obj.parentNode;   
    do{   
        if(pr == undefined || pr == "undefined") return true;   
        else{   
            if(!isVisible(pr)) return false;   
        }   
    }while(pr=pr.parentNode);   
    return true;   
}

   弹出警告对话框,用户点确定后将光标置于出错文本框上, 并且将原来输入内容选中。

function f_alert(obj,alertInfo)   
{   
    var caption = obj.getAttribute("eos_displayname");   
    if(caption == null)   
        caption = "";   
    alert(caption + ":" + alertInfo + "!");    
    obj.select();   
    if(isVisible(obj) && checkPrVis(obj))   
        obj.focus();   
}

   检测字符串是否为空


function isnull(str)   
{   
    var i;   
    if(str.length == 0)   
        return true;   
    for (i=0;i<str.length;i++)   
    {   
        if (str.charAt(i)!=' ')    
            return false;   
    }   
    return true;   
}   

 检测指定文本框输入是否合法。
* 如果用户输入的内容有错,则弹出提示对话框,
* 同时将焦点置于该文本框上,并且该文本框前面
* 会出现一个警告图标(输入正确后会自动去掉)。

 

function checkInput(object)   
{   
    var image;   
    var i;   
    var length;   
  
    if(object.eos_maxsize + "" != "undefined") length = object.eos_maxsize;   
    else length = 0;   
  
    if (object.eos_isnull=="true" && isnull(object.value))  return true;   
  
    /* 长度校验 */  
    if(length != 0 && strlen(object.value) > parseInt(length)) {   
            f_alert(object, "超出最大长度" + length);   
            return false;   
    }    
    /* 数据类型校验 */  
    else {   
        if (object.eos_datatype + "" != "undefined")   
        {          
  
            var dtype = object.eos_datatype;   
            var objName = object.name;   
            //如果类型名后面带有括号,则视括号前面的字符串为校验类型   
            if(dtype.indexOf("(") != -1)   
                dtype = dtype.substring(0,dtype.indexOf("("));   
            //根据页面元素的校验类型进行校验   
            try{   
                if(eval("f_check_" + dtype + "(object)") != true)   
                    return false;   
            }catch(e){return true;}   
            /*  如果form中存在name前半部分相同,并且同时存在以"min"和"max"结尾的表单域,  
                那么视为按区间查询。即"min"结尾的表单域的值要小于等于"max"结尾的表单域的值。 */  
            if(objName.substring((objName.length-3),objName.length)=="min")   
            {   
                var objMaxName = objName.substring(0, (objName.length-3)) + "max";   
                if(document.getElementById(objMaxName) != undefined && document.getElementById(objMaxName) != "undefined" )   
                {   
              &n, bsp;     if(checkIntervalObjs(object, document.getElementById(objMaxName)) != true)   
                        return false;                      
                }   
            }              
        }   
    }   
    return true;   

标签:函数,JavaScript,验证
0
投稿

猜你喜欢

  • Python二维数组实现求出3*3矩阵对角线元素的和示例

    2021-10-03 20:19:24
  • MySQL外键约束的禁用与启用命令

    2024-01-27 00:45:04
  • 用python开发一款操作MySQL的小工具

    2024-01-26 08:55:19
  • MySQL分页分析原理及提高效率

    2024-01-20 08:45:09
  • python lambda表达式(匿名函数)写法解析

    2023-07-30 20:56:12
  • MySQL子查询详细教程

    2024-01-22 07:42:04
  • pycharm下打开、执行并调试scrapy爬虫程序的方法

    2022-08-07 09:30:52
  • Python pymsql模块的使用

    2023-01-08 15:23:00
  • sqlserver 三种分页方式性能比较[图文]

    2011-09-30 11:16:20
  • 微信小程序使用npm支持踩坑

    2024-04-22 13:07:40
  • Highcharts+NodeJS搭建数据可视化平台示例

    2024-05-02 17:38:38
  • 探究Python中isalnum()方法的使用

    2021-12-05 19:05:31
  • Python Matplotlib基本用法详解

    2022-07-30 15:52:27
  • 在ASP.NET 2.0中操作数据之十:使用 GridView和DetailView实现的主/从报表

    2023-07-02 20:22:40
  • javascript实现checkbox全选的代码

    2024-04-16 10:38:11
  • Oracle中的分析函数汇总

    2024-01-20 05:59:38
  • Python为何不支持switch语句原理详解

    2023-03-27 08:37:27
  • Python如何用filter函数筛选数据

    2022-07-23 21:20:14
  • python range实例用法分享

    2021-09-28 02:54:46
  • 能否推荐一个论坛用的数据库结构?

    2009-11-01 18:09:00
  • asp之家 网络编程 m.aspxhome.com