Tengo una etiqueta div
<div id="theDiv">Where is the image?</div>
Me gustaría agregar una etiqueta de imagen dentro del div
Resultado final:
<div id="theDiv"><img id="theImg" src="theImg.png" />Where is the image?</div>
Tengo una etiqueta div
<div id="theDiv">Where is the image?</div>
Me gustaría agregar una etiqueta de imagen dentro del div
Resultado final:
<div id="theDiv"><img id="theImg" src="theImg.png" />Where is the image?</div>
Respuestas:
Has intentado lo siguiente:
$('#theDiv').prepend('<img id="theImg" src="theImg.png" />')
mis 2 centavos:
$('#theDiv').prepend($('<img>',{id:'theImg',src:'theImg.png'}))
$("#theDiv").append("<img id='theImg' src='theImg.png'/>");
Necesita leer la documentación aquí .
Si queremos cambiar el contenido de la <div>
etiqueta cada vez que image()
se llama a la función , tenemos que hacer esto:
Javascript
function image() {
var img = document.createElement("IMG");
img.src = "/images/img1.gif";
$('#image').html(img);
}
HTML
<div id="image"></div>
<div><a href="javascript:image();">First Image</a></div>
Además de la publicación de Manjeet Kumar (no tenía la declaración)
var image = document.createElement("IMG");
image.alt = "Alt information for image";
image.setAttribute('class', 'photo');
image.src="/images/abc.jpg";
$(#TheDiv).html(image);