通过JS实现上传图片的功能

    刚刚在项目中遇到要上传产品图片的问题, 研究一下写了一个测试通过, 以下是我的源代码:

   <!-- 实现图片上传 -->
   <script type="text/javascript">
      function getFilePic(){
         form_add.picture1.src = form_add.pic.value;
         var stxt;
         stxt = form_add.pic.value.substring(form_add.pic.value.lastIndexOf(".")
         +1,form_add.pic.length); //取出文件的扩展名
        
         stxt = stxt.toUpperCase();
         switch(stxt){
            case "GIF":
            alert("你上传的是GIF图片");
            break;
           
            case "JPG":
            alert("你上传的是JPG图片");
            break;
           
             case "BMP":
            alert("你上传的是BMP图片");
            break;
           
            default:
            alert("你输入的图片格式必须为jpg,bmp,gif!");
            break;
           
         }
      }
   </script>

调用代码如下:

<form id=""form_add>

<td>选择图片:<input type="file" name="pic"></td>

<td><input type="button" value="上传" onclick="getFilePic()"/></td>

  补充一下: 要实现预览的效果还需添加如下代码:

  图片预览
          <td ><img id="picture1" width="260" height="140"/></td>

你可能感兴趣的:(js)