checkBoardroom.js
上传用户:guhaomin
上传日期:2007-06-10
资源大小:23203k
文件大小:2k
源码类别:

电子政务应用

开发平台:

Java

  1. function checkBoardroom( form )
  2. {
  3.    
  4.    if  (  ( !stripWhitespace( form.code.value ) || isEmpty( form.code.value ) )    )  
  5.    {    
  6.         alert('请输入编号,不能为空!');
  7.         form.code.focus();
  8.         return false;
  9.    }
  10.    if  (  ( !stripWhitespace( form.name.value ) || isEmpty( form.name.value ) )    )  
  11.    {    
  12.         alert('请输入名称,不能为空!');
  13.         form.name.focus();
  14.         return false;
  15.    }
  16.    if (  form.code.value.length > 30 )
  17.    {
  18.        alert('编号必须小于30个字符!');
  19.        form.code.focus();
  20.        return false;
  21.    }
  22.    if (  form.name.value.length > 30 )
  23.    {
  24.        alert('名称必须小于30个字符!');
  25.        form.name.focus();
  26.        return false;
  27.    }
  28.    if (  form.position.value.length > 100 )
  29.    {
  30.      alert('位置必须小于100个字符!');
  31.      form.position.focus();
  32.         return false;
  33.    }
  34.    if ( !isInteger( form.seatAmount.value ) || form.seatAmount.value == 0 )
  35.    {
  36.        alert("座位数必须是大于零整数!");
  37.        
  38.        form.seatAmount.focus();
  39.        return false;
  40.    }
  41.    if( isInteger( form.seatAmount.value ) && form.seatAmount.value.length > 4 )
  42.    {
  43.        alert("座位数应小于9999!");
  44.        form.seatAmount.focus();
  45.        return false;
  46.    }
  47.    if( form.administrator.value =='' )
  48.    {
  49.         alert('请选择管理者!');
  50.      form.administrator.focus();
  51.         return false;
  52.    }
  53.    if( form.devices.value.length > 500 )
  54.    {
  55.         alert('设备描述必须小于500个字符!');
  56.        form.devices.focus();
  57.        return false;
  58.    }
  59.    if( form.description.value.length >500 )
  60.    {
  61.        alert('描述必须小于500个字符!');
  62.        form.description.focus();
  63.        return false;
  64.    }
  65.    return true;
  66. }