HTML-Mostrar imagen después de seleccionar el nombre de archivo [duplicar]


Posible Duplicado:
Previsualizar una imagen antes de subirla

Tengo un formulario que me permite con

<input type="file" name="filename" accept="image/gif, image/jpeg, image/png">

Para buscar y seleccionar un archivo.

Lo que quiero hacer es mostrar esa imagen inmediatamente después de que la imagen haya sido seleccionada. Y esto es antes de que se haya presionado el botón" enviar " en el formulario, por lo que la imagen casi con certeza reside en el lado del cliente. Se puede hacer esto?

Author: Community, 2012-09-11

3 answers

Aquí Tienes:

HTML

<!DOCTYPE html>
<html>
<head>
<link class="jsbin" href="http://ajax.googleapis.com/ajax/libs/jqueryui/1/themes/base/jquery-ui.css" rel="stylesheet" type="text/css" />
<script class="jsbin" src="http://ajax.googleapis.com/ajax/libs/jquery/1/jquery.min.js"></script>
<script class="jsbin" src="http://ajax.googleapis.com/ajax/libs/jqueryui/1.8.0/jquery-ui.min.js"></script>
<meta charset=utf-8 />
<title>JS Bin</title>
<!--[if IE]>
  <script src="http://html5shiv.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
<style>
  article, aside, figure, footer, header, hgroup, 
  menu, nav, section { display: block; }
</style>
</head>
<body>
  <input type='file' onchange="readURL(this);" />
    <img id="blah" src="#" alt="your image" />
</body>
</html>

Script:

function readURL(input) {
        if (input.files && input.files[0]) {
            var reader = new FileReader();

            reader.onload = function (e) {
                $('#blah')
                    .attr('src', e.target.result)
                    .width(150)
                    .height(200);
            };

            reader.readAsDataURL(input.files[0]);
        }
    }

Demostración En Vivo

 224
Author: ygssoni,
Warning: date(): Invalid date.timezone value 'Europe/Kyiv', we selected the timezone 'UTC' for now. in /var/www/agent_stack/data/www/ajaxhispano.com/template/agent.layouts/content.php on line 61
2017-05-21 13:30:22

Puede lograr esto con el siguiente código:

$("input").change(function(e) {

    for (var i = 0; i < e.originalEvent.srcElement.files.length; i++) {

        var file = e.originalEvent.srcElement.files[i];

        var img = document.createElement("img");
        var reader = new FileReader();
        reader.onloadend = function() {
             img.src = reader.result;
        }
        reader.readAsDataURL(file);
        $("input").after(img);
    }
});

Demo: http://jsfiddle.net/ugPDx /

 24
Author: Xavier,
Warning: date(): Invalid date.timezone value 'Europe/Kyiv', we selected the timezone 'UTC' for now. in /var/www/agent_stack/data/www/ajaxhispano.com/template/agent.layouts/content.php on line 61
2016-07-16 18:55:42

Esto se puede hacer usando HTML5, pero solo funcionará en navegadores que lo soporten. Aquí hay un ejemplo .

Tenga en cuenta que necesitará un método alternativo para los navegadores que no admiten esto. He tenido mucho éxito con este plugin, que te quita mucho trabajo de las manos.

 3
Author: Kelvin,
Warning: date(): Invalid date.timezone value 'Europe/Kyiv', we selected the timezone 'UTC' for now. in /var/www/agent_stack/data/www/ajaxhispano.com/template/agent.layouts/content.php on line 61
2012-09-11 11:47:08