非常完整的Java开发的网络办公系统

源代码在线查看: address_create.jsp

软件大小: 23203 K
上传用户: RR15133422795
关键词: Java 网络
下载地址: 免注册下载 普通下载 VIP

相关代码

				
				
				
				
				
				
				
				function isDigit (c)
				{   
				  return ((c >= "0") && (c 				}
				function isInteger (s)
				{   
				    var i;
				    for (i = 0; i < s.length; i++)
				    {
				        var c = s.charAt(i);
				        if (!isDigit(c)) return false;
				    }
				    return true;
				}
				function isValidChar(str)
				{
				  var i,j,strTemp;
				  strTemp="/\\";
				  for (i=0;i				  {
				    j=strTemp.indexOf(str.charAt(i));	
				    if (j!=-1)
				    {
				      return false;
				    }
				  }
				  return true;
				}
				function check()
				{
				  if (!stripWhitespace(document.myform.companyName.value) || document.myform.companyName.value=="" || document.myform.companyName.value.length>50)
						{
						  alert("公司名不能为空,并且少于50个字。");
						  document.myform.companyName.focus();
						  return false;
						}
						if (document.myform.companyAddress.value.length>50)
						{
						  alert("公司地址应少于50个字。");
						  document.myform.companyAddress.focus();
						  return false;
						}
						if ((!document.myform.companyZip.value=="" && document.myform.companyZip.value.length!=6) || !isInteger(document.myform.companyZip.value))
						{
						  alert("公司邮编应该是6位数字。");
						  document.myform.companyZip.focus();
						  return false;
						}
						if (document.myform.companyTelephone.value.length>20)
						{
						  alert("公司电话应少于20个字。");
						  document.myform.companyTelephone.focus();
						  return false;
						}
						if (document.myform.companyFax.value.length>20)
						{
						  alert("公司传真应少于20个字。");
						  document.myform.companyFax.focus();
						  return false;
						}
				  if(!isValidChar(myform.companyName.value) || !isValidChar(myform.companyAddress.value) || !isValidChar(myform.companyTelephone.value) 
				     || !isValidChar(myform.companyFax.value))
				  {
				    alert("输入内容不能包括 < > / \\ 这些特殊字符。");
				    return false;
				  }
				  else
				    return true;
				}
				
				function createCompany()
				{
					 if( !check() )
					 {
					   return false;
					 }
					 myform.action= "/mainctrl/commoninfo/addresslist/createAddressListSuccess";
				  myform.submit();
				}
				
				
				
				
				
				  
				    
				     
				    
				     
				        
				          
				          
				            
				               
				                
				                   
				                    首页>>办公室管理>>外部通讯录>>添加公司通讯录
				                  
				                   
				                     
				                       公司名称:
				                    
				                     
				                       * (注:带*为必填内容)
				                    
				                  
				                   
				                     
				                       地址:
				                    
				                    
				                      
				                    
				                  
				                   
				                     
				                       邮编:
				                    
				                    
				                      
				                    
				                  
				                   
				                     
				                       电话:
				                    
				                    
				                      
				                    
				                  
				                   
				                     
				                       传真:
				                    
				                     
				                      
				                    
				                  
				                   
				                     
				                       
				                        
				                          
				                          
				                      
				                    
				                  
				                
				              
				            
				          
				          
				       
				    
				    
				     
				  
				  
				  
					
				
							

相关资源