• JS验证控件合法性方法代码


    <script type="text/javascript">
    // 验证合法性
    function validate(name,zname,length)
    {
        var str=eval("document.all['" + name + "'].value;");
        var strlength = parseInt(length);
        if(str == "")
        {
             Alert("输入的"+zname+"信息内容不能为空!",'','','提示',function gotomethod()
                                                              {
                                                                eval("document.all['"+name+"'].focus();")
                                                              },''); 
            return false;
        }
        if(str.length>strlength)
        {
             Alert("输入的"+zname+"信息长度不能大于"+strlength+"!",'','','提示',function gotomethod()
                                                                      {
                                                                        eval("document.all['"+name+"'].focus();")
                                                                      },''); 
            return false;
        }
        return true;
    }
    </script>
  • 相关阅读:
    C++ 项目和资源导引
    C++ 类再探
    C++ 语句函数再探
    leetcode-174. Dungeon Game 地下城游戏
    34. Find First and Last Position of Element in Sorted Array + 二分
    leetcode-27. Remove Element删除元素
    git 使用入门
    MySQL数据库的启动与停止
    C++类型转换
    C++ 获取对象类型
  • 原文地址:https://www.cnblogs.com/wangpei/p/2468293.html
Copyright © 2020-2023  润新知