column.txt
资源名称:shop.rar [点击查看]
上传用户:yatiankong
上传日期:2014-05-16
资源大小:5604k
文件大小:1k
源码类别:
Applet
开发平台:
Java
- function formCheck()
- {
- if (document.theform.name.value == "")
- {
- alert("请填性质类别名称!");
- theform.name.focus();
- return false;
- }
- if (document.theform.userName.content== "")
- {
- alert("请填备注信息!");
- theform.userName.focus();
- return false;
- }
- if (document.theform.productName.value =="")
- {
- alert("请填写产品名称!");
- theform.productName.focus();
- return false;
- }
- if (document.theform.introduce.value == "")
- {
- alert("请填写产品说明!");
- theform.introduce.focus();
- return false;
- }
- var str2;
- //获得用户输入库存的值
- str2=document.theform.email.storage;
- {
- for(i = 0; i < str2.length; i++) {
- if(str2.charAt(i) < "0" || str2.charAt(i) > "9")
- return false;
- }
- }
- if (document.theform.minPicture.value.substr(document.formPost.photo_file.value.length - 4, 4).toLowerCase().match("^.jpg|.bmp|.gif$") == null)
- {
- alert("图像类型不是JPG,BMP,GIF类型");
- }
- if (document.theform.maxPicture.value.substr(document.formPost.photo_file.value.length - 4, 4).toLowerCase().match("^.jpg|.bmp|.gif$") == null)
- {
- alert("图像类型不是JPG,BMP,GIF类型");
- }
- }