JS实现可视化文件上传


Posted in Javascript onSeptember 08, 2018

本文实例为大家分享了JS可视化文件上传的具体代码,供大家参考,具体内容如下

测试-Style

<style type="text/css">
    .imgbox,.imgbox1
    {
      position: relative;
      width: 200px;
      height: 180px;
      border: 1px solid #ddd;
      overflow: hidden;
    }
 
    .imgnum{
      left: 0px;
      top: 0px;
      margin: 0px;
      padding: 0px;
    }
    .imgnum input,.imgnum1 input {
      position: absolute;
      width: 200px;
      height: 180px;
      opacity: 0;
    }
    .imgnum img,.imgnum1 img {
      width: 100%;
      height: 100%;
    }
    .close,
    .close1 {
      color: red;
      position: absolute;
      right: 10px;
      top: 0;
      display: none;
    }
</style>

测试--HTML

<div id="img">
 
 <div class="imgbox">
 <div class="imgnum">
  <input type="file" class="filepath" />
  <span class="close">X</span>
  <img src="btn.png" class="img1" />
  <img src="" class="img2" />
 </div>
 </div>
 
</div>

JS: 需要引入jquery

<script type="text/javascript">
  $(function() {
    $(".filepath").on("change",function() {
      var srcs = getObjectURL(this.files[0]);  //获取路径
      $(this).nextAll(".img1").hide();     //this指的是input
      $(this).nextAll(".img2").show();     //fireBUg查看第二次换图片不起做用
      $(this).nextAll('.close').show();     //this指的是input
      $(this).nextAll(".img2").attr("src",srcs);  //this指的是input
      $(this).val('');               //必须制空
      $(".close").on("click",function() {
        $(this).hide();             //this指的是span
        $(this).nextAll(".img2").hide();
        $(this).nextAll(".img1").show();
      })
    })
  })
 
 
 
//关键代码:getObjectURL return url
  function getObjectURL(file) {
    var url = null;
    if (window.createObjectURL != undefined) {
      url = window.createObjectURL(file)
    } else if (window.URL != undefined) {
      url = window.URL.createObjectURL(file)
    } else if (window.webkitURL != undefined) {
      url = window.webkitURL.createObjectURL(file)
    }
    return url
  };
 

//modify img
  $(function() {
    $("#img").on("change",".filepath1",function() {
      //alert($('.imgbox1').length);
      var srcs = getObjectURL(this.files[0]);  //获取路径
      alert(srcs);
      //this指的是input
      /* $(this).nextAll(".img22").attr("src",srcs);  //this指的是input
       $(this).nextAll(".img22").show(); //fireBUg查看第二次换图片不起做用*/
      var htmlImg='<div class="imgbox1">'+
          '<div class="imgnum1">'+
          '<input type="file" class="filepath1" />'+
          '<span class="close1">X</span>'+
          '<img src="btn.png" class="img11" />'+
          '<img src="'+srcs+'" class="img22" />'+
          '</div>'+
          '</div>';
 
      $(this).parent().parent().before(htmlImg);
      $(this).val('');            //必须制空
      $(this).parent().parent().prev().find(".img11").hide();  //this指的是input
      $(this).parent().parent().prev().find('.close1').show();
 
      $(".close1").on("click",function() {
        $(this).hide();          //this指的是span
        $(this).nextAll(".img22").hide();
        $(this).nextAll(".img11").show();
        if($('.imgbox1').length>1){
          $(this).parent().parent().remove();
        }
 
      })
    })
  })
 
</script>

注:低版本IE不支持可视化

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持三水点靠木。

Javascript 相关文章推荐
javascript 面向对象编程 万物皆对象
Sep 17 Javascript
Jquery中的CheckBox、RadioButton、DropDownList的取值赋值实现代码
Oct 12 Javascript
JavaScript事件委托的技术原理探讨示例
Apr 17 Javascript
JS中的hasOwnProperty()和isPrototypeOf()属性实例详解
Aug 11 Javascript
Angularjs之filter过滤器(推荐)
Nov 27 Javascript
简单实现node.js图片上传
Dec 18 Javascript
教你5分钟学会用requirejs(必看篇)
Jul 25 Javascript
Node.js如何使用Diffie-Hellman密钥交换算法详解
Sep 05 Javascript
js移动端图片压缩上传功能
Aug 18 Javascript
微信小程序scroll-view隐藏滚动条的方法详解
Mar 25 Javascript
vue中使用vue-pdf的方法详解
Sep 05 Javascript
Javascript 解构赋值详情
Nov 17 Javascript
js实现文件上传功能 后台使用MultipartFile
Sep 08 #Javascript
vue-router的HTML5 History 模式设置
Sep 08 #Javascript
vue移动端下拉刷新和上拉加载的实现代码
Sep 08 #Javascript
react 父子组件之间通讯props
Sep 08 #Javascript
js代码规范之Eslint安装与配置详解
Sep 08 #Javascript
vue弹窗插件实战代码
Sep 08 #Javascript
浅谈从React渲染流程分析Diff算法
Sep 08 #Javascript
You might like
Content-type 的说明
2006/10/09 PHP
php Smarty初体验二 获取配置信息
2011/08/08 PHP
PHP教程之PHP中shell脚本的使用方法分享
2012/02/23 PHP
php 常用算法和时间复杂度
2013/07/01 PHP
CodeIgniter配置之config.php用法实例分析
2016/01/19 PHP
PHP 获取客户端 IP 地址的方法实例代码
2018/11/11 PHP
基于laravel where的高级使用方法
2019/10/10 PHP
javascript innerHTML、outerHTML、innerText、outerText的区别
2008/11/24 Javascript
使用ExtJS技术实现的拖动树结点
2010/08/05 Javascript
深入理解JavaScript系列(27):设计模式之建造者模式详解
2015/03/03 Javascript
js将table的每个td的内容自动赋值给其title属性的方法
2016/10/13 Javascript
javascript 判断当前浏览器版本并判断ie版本
2017/02/17 Javascript
React Js 微信禁止复制链接分享禁止隐藏右上角菜单功能
2017/05/26 Javascript
Angularjs的键盘事件的绑定
2017/07/27 Javascript
解决在vue+webpack开发中出现两个或多个菜单公用一个组件问题
2017/11/28 Javascript
深入理解 Koa 框架中间件原理
2018/10/18 Javascript
vue-cli3全面配置详解
2018/11/14 Javascript
更强大的vue ssr实现预取数据的方式
2019/07/19 Javascript
Vue.js实现大转盘抽奖总结及实现思路
2019/10/09 Javascript
JS实现打砖块游戏
2020/02/14 Javascript
Vue插槽_特殊特性slot,slot-scope与指令v-slot说明
2020/09/04 Javascript
Python使用shelve模块实现简单数据存储的方法
2015/05/20 Python
Python表示矩阵的方法分析
2017/05/26 Python
详解python中的文件与目录操作
2017/07/11 Python
Python计算斗牛游戏概率算法实例分析
2017/09/26 Python
利用Python实现手机短信监控通知的方法
2019/07/22 Python
快速解决docker-py api版本不兼容的问题
2019/08/30 Python
Python3 Click模块的使用方法详解
2020/02/12 Python
Python尾递归优化实现代码及原理详解
2020/10/09 Python
python dir函数快速掌握用法技巧
2020/12/09 Python
用HTML5制作烟火效果的教程
2015/05/12 HTML / CSS
《真想变成大大的荷叶》教学反思
2014/04/14 职场文书
高中学生会竞选演讲稿
2014/08/25 职场文书
施工现场安全管理制度
2015/08/05 职场文书
学校运动会感想
2015/08/10 职场文书
使用refresh_token实现无感刷新页面
2022/04/26 Javascript