html5 选择多张图片在页面内预览并上传到后台

版权声明:本文为博主原创文章,未经博主允许不得转载。 http://blog.csdn.net/huangxin112/article/details/74956462

需求:点击选择图片(可选多张),确定后将选择的图片显示在页面上,点击提交将图片提交给后台。

效果图:

html5    选择多张图片在页面内预览并上传到后台

  1. <label>请选择一个图像文件:</label>
  2. <input type="file" id="pic_selector" multiple/> <!--multiple,可选择多张图片-->
  3. <button>提交</button>

html内容,主要是multiple属性,支持选择多个文件。是HTML5属性,注意兼容问题(IOS支持,安卓不支持)。

js内容:

  1. function readFile(){
  2. dataArr = { data : [] };
  3. fd = new FormData();
  4. var iLen = this.files.length;
  5. for(var i=0;i<iLen;i++){
  6. if (!input['value'].match(/.jpg|.gif|.png|.bmp/i)){  //判断所选文件格式
  7. return alert("上传的图片格式不正确,请重新选择");
  8. }
  9. var reader = new FileReader();
  10. fd.append(i,this.files[i]);
  11. reader.readAsDataURL(this.files[i]);  //转成base64
  12. var fileName = this.files[i].name;
  13. reader.onload = function(e){
  14. var imgMsg = {
  15. name : fileName,//获取文件名
  16. base64 : this.result   //reader.readAsDataURL方法执行完后,base64数据储存在reader.result里
  17. }
  18. dataArr.data.push(imgMsg);
  19. result = '<div style="display:none" class="result" ><img src="'+this.result+'" alt=""/></div>';
  20. div = document.createElement('div');
  21. div.innerHTML = result;
  22. div['className'] = 'float';
  23. document.getElementsByTagName('body')[0].appendChild(div);    //插入页面
  24. var img = div.getElementsByTagName('img')[0];
  25. img.onload = function(){
  26. var nowHeight = ReSizePic(this); //设置图片大小
  27. this.parentNode.style.display = 'block';
  28. var oParent = this.parentNode;
  29. if(nowHeight){
  30. oParent.style.paddingTop = (oParent.offsetHeight - nowHeight)/2 + 'px';
  31. }
  32. }
  33. }
  34. }
  35. }

以上函数实现选择图片并显示在桌面上,其中img.onload的作用是将选中的图片进行缩放,放在宽高相等的div中并居中显示,可根据自己需求删除这句。

下面附上ReSizePic函数

  1. function ReSizePic(ThisPic) {
  2. var RePicWidth = 200; //这里修改为您想显示的宽度值
  3. var TrueWidth = ThisPic.width; //图片实际宽度
  4. var TrueHeight = ThisPic.height; //图片实际高度
  5. if(TrueWidth>TrueHeight){
  6. //宽大于高
  7. var reWidth = RePicWidth;
  8. ThisPic.width = reWidth;
  9. //垂直居中
  10. var nowHeight = TrueHeight * (reWidth/TrueWidth);
  11. return nowHeight;  //将图片修改后的高度返回,供垂直居中用
  12. }else{
  13. //宽小于高
  14. var reHeight = RePicWidth;
  15. ThisPic.height = reHeight;
  16. }
  17. }

以上就实现了图片选择展示,并将所选图片转成base64保存在dataArr中,之后用ajax上传即可。

  1. function send(){
  2. $.ajax({
  3. url : 'http://...',
  4. type : 'post',
  5. data : dataArr,
  6. dataType: 'json',
  7. //processData: false,   用FormData传fd时需有这两项
  8. //contentType: false,
  9. success : function(data){
  10. console.log('返回的数据:'+JSON.stringify(data))
  11.  }
  12. })
  13. }
  14. var oBtn = document.getElementsByTagName('button')[0];
  15. oBtn.onclick=function(){
  16. if(!input.files.length){
  17. return alert('请先选择文件');
  18. }
  19. send();
  20. }

至于用FormData上传,方法大同小异,这里不再演示了。

下面是完整代码

  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <meta charset="UTF-8">
  5. <title>showImages</title>
  6. <style type="text/css">
  7. .float{
  8. float:left;
  9. width : 200;
  10. height: 200;
  11. overflow: hidden;
  12. border: 1px solid #CCCCCC;
  13. border-radius: 10px;
  14. padding: 5px;
  15. margin: 5px;
  16. }
  17. img{
  18. position: relative;
  19. }
  20. .result{
  21. width: 200px;
  22. height: 200px;
  23. text-align: center;
  24. box-sizing: border-box;
  25. }
  26. </style>
  27. <script src="http://libs.baidu.com/jquery/2.0.0/jquery.min.js"></script>
  28. <script type="text/javascript">
  29. window.onload = function(){
  30. var input = document.getElementById("file_input");
  31. var result,div;
  32. if(typeof FileReader==='undefined'){
  33. result.innerHTML = "抱歉,你的浏览器不支持 FileReader";
  34. input.setAttribute('disabled','disabled');
  35. }else{
  36. input.addEventListener('change',readFile,false);
  37. }     //handler
  38. var dataArr = null; //直接传base64数据
  39. var fd = null;  //FormData方式发送请求
  40. function readFile(){
  41. dataArr = { data : [] };
  42. fd = new FormData();
  43. var iLen = this.files.length;
  44. for(var i=0;i<iLen;i++){
  45. if (!input['value'].match(/.jpg|.gif|.png|.bmp/i)){  //判断上传文件格式
  46. return alert("上传的图片格式不正确,请重新选择");
  47. }
  48. var reader = new FileReader();
  49. fd.append(i,this.files[i]);
  50. reader.readAsDataURL(this.files[i]);  //转成base64
  51. var fileName = this.files[i].name;
  52. reader.onload = function(e){
  53. var imgMsg = {
  54. name : fileName,//获取文件名
  55. base64 : this.result   //reader.readAsDataURL方法执行完后,base64数据储存在reader.result里
  56. }
  57. dataArr.data.push(imgMsg);
  58. result = '<div style="display:none" class="result" ><img src="'+this.result+'" alt=""/></div>';
  59. div = document.createElement('div');
  60. div.innerHTML = result;
  61. div['className'] = 'float';
  62. document.getElementsByTagName('body')[0].appendChild(div);    //插入dom树
  63. var img = div.getElementsByTagName('img')[0];
  64. img.onload = function(){
  65. var nowHeight = ReSizePic(this); //设置图片大小
  66. this.parentNode.style.display = 'block';
  67. var oParent = this.parentNode;
  68. if(nowHeight){
  69. oParent.style.paddingTop = (oParent.offsetHeight - nowHeight)/2 + 'px';
  70. }
  71. }
  72. }
  73. }
  74. }
  75. function send(){
  76. $.ajax({
  77. url : 'http://123.206.89.242:9999',
  78. type : 'post',
  79. data : dataArr,
  80. dataType: 'json',
  81. //processData: false,   用FormData传fd时需有这两项
  82. //contentType: false,
  83. success : function(data){
  84. console.log('返回的数据:'+JSON.stringify(data))
  85.  }
  86. })
  87. }
  88. var oBtn = document.getElementsByTagName('button')[0];
  89. oBtn.onclick=function(){
  90. if(!input.files.length){
  91. return alert('请先选择文件');
  92. }
  93. send();
  94. }
  95. }
  96. /*
  97. 用ajax发送fd参数时要告诉jQuery不要去处理发送的数据,
  98. 不要去设置Content-Type请求头才可以发送成功,否则会报“Illegal invocation”的错误,
  99. 也就是非法调用,所以要加上“processData: false,contentType: false,”
  100. * */
  101. function ReSizePic(ThisPic) {
  102. var RePicWidth = 200; //这里修改为您想显示的宽度值
  103. var TrueWidth = ThisPic.width; //图片实际宽度
  104. var TrueHeight = ThisPic.height; //图片实际高度
  105. if(TrueWidth>TrueHeight){
  106. //宽大于高
  107. var reWidth = RePicWidth;
  108. ThisPic.width = reWidth;
  109. //垂直居中
  110. var nowHeight = TrueHeight * (reWidth/TrueWidth);
  111. return nowHeight;  //将图片修改后的高度返回,供垂直居中用
  112. }else{
  113. //宽小于高
  114. var reHeight = RePicWidth;
  115. ThisPic.height = reHeight;
  116. }
  117. }
  118. </script>
  119. </head>
  120. <body ng-controller="Aaa" >
  121. <div class="container">
  122. <label>请选择一个图像文件:</label>
  123. <input type="file" id="file_input" multiple/> <!--用input标签并选择type=file,记得带上multiple,不然就只能单选图片了-->
  124. <button>提交</button>
  125. </div>
  126. </body>
  127. </html>
 
上一篇:对称加密AES


下一篇:UVA.10881 Piotr's Ants (思维题)