shop.js
上传用户:sami52198
上传日期:2010-02-11
资源大小:5174k
文件大小:2k
源码类别:

电子政务应用

开发平台:

MultiPlatform

  1. function goodsadd()
  2. {
  3.     
  4.     if(isWhitespace(document.form1.name.value))
  5.      {
  6.       alert("请输入商品名称!");
  7.       document.form1.name.focus();
  8.       return false;
  9.      }  
  10.     if(document.form1.parentid.value=='all')
  11.      {
  12.      
  13.          alert("请选择添加商品的大类");
  14.          document.form1.parentid.focus();
  15.          return false;
  16.      }
  17.      
  18.     if(document.form1.catalog_id.value=='all')
  19.      {
  20.          alert("请选择添加商品的子类");
  21.          document.form1.catalog_id.focus();
  22.          return false;
  23.      }     
  24.     
  25.      if(isWhitespace(document.form1.manufacturer.value))
  26.      {
  27.       alert("请输入厂商名称!");
  28.       document.form1.manufacturer.focus();
  29.       return false;
  30.      }    
  31.   
  32.     if(isWhitespace(document.form1.market_price.value))
  33.      {
  34.       alert("请输入市场价格!");
  35.       document.form1.market_price.focus();
  36.       return false;
  37.      }
  38.      
  39.     if(isWhitespace(document.form1.price.value))
  40.      {
  41.       alert("请输入非会员价格!");
  42.       document.form1.price.focus();
  43.       return false;
  44.      }  
  45.      
  46.     if(isWhitespace(document.form1.member_price.value))
  47.      {
  48.       alert("请输入会员价格!");
  49.       document.form1.member_price.focus();
  50.       return false;
  51.      }                   
  52.     if(isWhitespace(document.form1.cost_price.value))
  53.      {
  54.       alert("请输入成本价格!");
  55.       document.form1.cost_price.focus();
  56.       return false;
  57.      }           
  58.      
  59.     if(isWhitespace(document.form1.keywords.value))
  60.      {
  61.       alert("请输入商品关键字!");
  62.       document.form1.keywords.focus();
  63.       return false;
  64.      }    
  65.      
  66.     if(isWhitespace(document.form1.brief.value))
  67.      {
  68.       alert("请输入简短介绍!");
  69.       document.form1.brief.focus();
  70.       return false;
  71.      }          
  72.     if(isWhitespace(document.form1.product_intr.value))
  73.      {
  74.       alert("请输入产品的详细介绍!");
  75.       document.form1.product_intr.focus();
  76.       return false;
  77.      }      
  78.     
  79.     return true;     
  80.     
  81. }
  82. function recommand()
  83. {
  84.     if(document.form1.parentid.value=='all')
  85.      {     
  86.          alert("请选择商品的大类");
  87.          document.form1.parentid.focus();
  88.          return false;
  89.      }     
  90.     else
  91.      {
  92.           return true;     
  93.      } 
  94.    
  95. }