Empresas
Empregos
  • Sobre nós
  • Soluções
    • Publicação de vagas
      Publique sua vaga e receba candidatos qualificados em 48h.
    • Avaliações de candidatos
      Mais de 500 testes técnicos e psicológicos, mais anti-fraude.
    • Headhunting
      Busca executiva personalizada do início ao fim.
    • Folha de Pagamento + EOR
      Dispersão de folha e EOR em mais de 15 países da LATAM.
  • Preços
  • Empregos

0

254
Visualizações
How to upload 1 image + convert to base64 + display the same image with the same ID multiple times on the same HTML page with javascript?

It works well but only display the image one time... Thank you for your help

<input type="file" id="file-upload" class="upload-file bg-highlight shadow-s rounded-s " accept="image/*">

<img id="image-data" src="images/empty.png" class="img-fluid">

<img id="image-data" src="images/empty.png" class="img-fluid">

<img id="image-data" src="images/empty.png" class="img-fluid">

<img id="image-data" src="images/empty.png" class="img-fluid">

about 4 years ago · Juan Pablo Isaza
1 Respostas
Responde à pergunta

0

This could work as expected. Choose an image file and use FileReader to read image data.

document.getElementById('file-upload').addEventListener('change', e => {
const file = e.target.files[0];
const reader = new FileReader();
reader.addEventListener("load", function () {
    document.querySelectorAll('#image-data').forEach(i => i.src = reader.result);
});
if (file) {
    reader.readAsDataURL(file);
}
});
#image-data { width: 100px; height: 100px; }
<input type="file" id="file-upload" class="upload-file bg-highlight shadow-s rounded-s " accept="image/*">

<img id="image-data" src="images/empty.png" class="img-fluid">

<img id="image-data" src="images/empty.png" class="img-fluid">

<img id="image-data" src="images/empty.png" class="img-fluid">

<img id="image-data" src="images/empty.png" class="img-fluid">

about 4 years ago · Juan Pablo Isaza Relatório
Responde à pergunta
Encontrar trabalhos remotos

Descubra a nova forma de encontrar um emprego!

melhores empregos
Principais categorias de trabalho
Empresas
Postar vaga Preços Comercial
Jurídico
Termos e Condições Política de privacidade
© 2026 PeakU Inc. All Rights Reserved.
Andres GPT
Recomende algumas ofertas para mim
Preciso de ajuda