检测某字段中是否含逗号!

来源:互联网 发布:足球彩票缩水过滤软件 编辑:程序博客网 时间:2024/05/21 09:56

//检测合同编号、合同名称 中是否含逗号!

function UserDefineDjSave()
{
    var pattern =/,/;

    if(txtContractID.value=="")
         return "合同编号不能为空!";


    var text1=document.getElementById("txtContractID");
    if(pattern.test(text1.value))
       return "对不起,合同编号中不能含有逗号!";

    var text2=document.getElementById("txtContractName");
    if(pattern.test(text2.value))
       return "对不起,合同名称中不能含有逗号!";
       else
         return DjSave();
}