checkBoardroom.js
资源名称:NetOffice.rar [点击查看]
上传用户:guhaomin
上传日期:2007-06-10
资源大小:23203k
文件大小:2k
源码类别:
电子政务应用
开发平台:
Java
- function checkBoardroom( form )
- {
- if ( ( !stripWhitespace( form.code.value ) || isEmpty( form.code.value ) ) )
- {
- alert('请输入编号,不能为空!');
- form.code.focus();
- return false;
- }
- if ( ( !stripWhitespace( form.name.value ) || isEmpty( form.name.value ) ) )
- {
- alert('请输入名称,不能为空!');
- form.name.focus();
- return false;
- }
- if ( form.code.value.length > 30 )
- {
- alert('编号必须小于30个字符!');
- form.code.focus();
- return false;
- }
- if ( form.name.value.length > 30 )
- {
- alert('名称必须小于30个字符!');
- form.name.focus();
- return false;
- }
- if ( form.position.value.length > 100 )
- {
- alert('位置必须小于100个字符!');
- form.position.focus();
- return false;
- }
- if ( !isInteger( form.seatAmount.value ) || form.seatAmount.value == 0 )
- {
- alert("座位数必须是大于零整数!");
- form.seatAmount.focus();
- return false;
- }
- if( isInteger( form.seatAmount.value ) && form.seatAmount.value.length > 4 )
- {
- alert("座位数应小于9999!");
- form.seatAmount.focus();
- return false;
- }
- if( form.administrator.value =='' )
- {
- alert('请选择管理者!');
- form.administrator.focus();
- return false;
- }
- if( form.devices.value.length > 500 )
- {
- alert('设备描述必须小于500个字符!');
- form.devices.focus();
- return false;
- }
- if( form.description.value.length >500 )
- {
- alert('描述必须小于500个字符!');
- form.description.focus();
- return false;
- }
- return true;
- }