column.txt
上传用户:yatiankong
上传日期:2014-05-16
资源大小:5604k
文件大小:1k
源码类别:

Applet

开发平台:

Java

  1.  function formCheck()
  2.   {
  3.         if (document.theform.name.value == "")
  4.         {
  5. alert("请填性质类别名称!");
  6. theform.name.focus();
  7. return false;
  8.         }
  9.         if (document.theform.userName.content== "")
  10.         {
  11. alert("请填备注信息!");
  12. theform.userName.focus();
  13. return false;
  14.         }
  15.         
  16.            if (document.theform.productName.value =="")
  17.         {
  18. alert("请填写产品名称!");
  19. theform.productName.focus();
  20. return false;
  21.         }
  22.           
  23.            if (document.theform.introduce.value == "")
  24.         {
  25. alert("请填写产品说明!");
  26. theform.introduce.focus();
  27. return false;
  28.         }
  29.              var str2;
  30.    //获得用户输入库存的值
  31. str2=document.theform.email.storage;
  32.          {  
  33.            for(i = 0; i < str2.length; i++) { 
  34.               if(str2.charAt(i) < "0" || str2.charAt(i) > "9")
  35.            return false;
  36.                    }
  37. }
  38.          if (document.theform.minPicture.value.substr(document.formPost.photo_file.value.length - 4, 4).toLowerCase().match("^.jpg|.bmp|.gif$") == null)
  39.               {
  40.                   alert("图像类型不是JPG,BMP,GIF类型");
  41.               }
  42.          
  43.          if (document.theform.maxPicture.value.substr(document.formPost.photo_file.value.length - 4, 4).toLowerCase().match("^.jpg|.bmp|.gif$") == null)
  44.               {
  45.                   alert("图像类型不是JPG,BMP,GIF类型");
  46.               }
  47.      }