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

Applet

开发平台:

Java

  1. function formCheck1(theform)
  2. {
  3.         if (theform.productName.value =="")
  4.         {
  5. alert("请输入产品名称!");
  6. theform.productName.focus();
  7. return false;
  8.         }
  9.         if(theform.marketPrice.value =="")
  10. {
  11.  alert("请输入市场价!");
  12.  theform.marketPrice.focus();
  13.  return false;
  14.     }
  15.  if(theform.marketPrice.value!=""){
  16.  var Letters = "1234567890.";
  17.  for (i=0;i<theform.marketPrice.value.length;i++)
  18.    {
  19.   var CheckChar = theform.marketPrice.value.charAt(i);
  20.   if (Letters.indexOf(CheckChar) == -1){
  21.   alert("请输入合法的市场价!");
  22.   theform.marketPrice.focus();
  23.   return false;
  24.   }
  25.     } 
  26.  }
  27.  if(theform.preferPrice.value ==""){
  28.  alert("请输入优惠价!");
  29.  theform.preferPrice.focus();
  30.  return false;
  31.     }
  32.  if(theform.preferPrice.value!=""){
  33.  var Letters = "1234567890.";
  34.  for (i=0;i<theform.preferPrice.value.length;i++)
  35.    {
  36.   var CheckChar = theform.preferPrice.value.charAt(i);
  37.   if (Letters.indexOf(CheckChar) == -1){
  38.   alert("请输入合法的优惠价!");
  39.   theform.preferPrice.focus();
  40.   return false;
  41.   }
  42.     } 
  43.  }
  44.  
  45.      
  46.  if(theform.storage.value ==""){
  47.  alert("请输入库存!");
  48.  theform.storage.focus();
  49.  return false;
  50.     }
  51.  if(theform.storage.value!=""){
  52.  var Letters = "1234567890";
  53.  for (i=0;i<theform.storage.value.length;i++)
  54.    {
  55.   var CheckChar = theform.storage.value.charAt(i);
  56.   if (Letters.indexOf(CheckChar) == -1){
  57.   alert("请输入合法库存!");
  58.   theform.storage.focus();
  59.   return false;
  60.   }
  61.     } 
  62.  }
  63.  
  64.          if (document.theform.maxPicture.value.substr(document.theform.maxPicture.value.length - 4, 4).toLowerCase().match("^.jpg|.bmp|.gif$") == null)
  65.               {
  66.                   alert("大图片图像类型不是JPG,BMP,GIF类型");
  67.                    theform.maxPicture.focus();
  68.        return false;
  69.               }
  70.           if (document.theform.minPicture.value.substr(document.theform.minPicture.value.length - 4, 4).toLowerCase().match("^.jpg|.bmp|.gif$") == null)
  71.               {
  72.                   alert("小图片图像类型不是JPG,BMP,GIF类型");
  73.                    theform.minPicture.focus();
  74. return false;
  75.               }
  76.       }
  77.