“Предварительный просмотр изображения перед загрузкой jQuery” Ответ

Предварительный просмотр файла изображения загрузка JavaScript

<input type="file" accept="image/*" onchange="loadFile(event)">
<img id="output"/>
<script>
  var loadFile = function(event) {
    var output = document.getElementById('output');
    output.src = URL.createObjectURL(event.target.files[0]);
    output.onload = function() {
      URL.revokeObjectURL(output.src) // free memory
    }
  };
</script>
Real Raccoon

Как отображать изображение перед загрузкой в ​​JHTML

function display(input) {
   if (input.files && input.files[0]) {
      var reader = new FileReader();
      reader.onload = function(event) {
         $('#myid').attr('src', event.target.result);
      }
      reader.readAsDataURL(input.files[0]);
   }
}

$("#demo").change(function() {
   display(this);
});
Homeless Hamerkop

Предварительный просмотр изображения перед загрузкой jQuery

// <input type="file" accept="image/*" id="img-input">
// <img id="preview"/>
function readURL(input) {
      if (input.files && input.files[0]) {
          var reader = new FileReader();
          reader.onload = function(e) {
          $('#preview').attr('src', e.target.result);
          }
          reader.readAsDataURL(input.files[0]);
      } else {
          $('#preview').attr('src', '');
      }
    }

  $("#img-input").change(function() {
    readURL(this);
  });
Terrible Tern

JQuery Preload Images

// Image proeloading with jQuery
$.fn.preload = function() {
    this.each(function(){
        $('<img/>')[0].src = this;
    });
}

// Usage:

$(['img1.jpg','img2.jpg','img3.jpg']).preload();
Fragile Flamingo

Ответы похожие на “Предварительный просмотр изображения перед загрузкой jQuery”

Вопросы похожие на “Предварительный просмотр изображения перед загрузкой jQuery”

Больше похожих ответов на “Предварительный просмотр изображения перед загрузкой jQuery” по JavaScript

Смотреть популярные ответы по языку

Смотреть другие языки программирования