Ho un tag div
<div id="theDiv">Where is the image?</div>
Vorrei aggiungere un tag immagine all'interno del div
Risultato finale:
<div id="theDiv"><img id="theImg" src="theImg.png" />Where is the image?</div>
Ho un tag div
<div id="theDiv">Where is the image?</div>
Vorrei aggiungere un tag immagine all'interno del div
Risultato finale:
<div id="theDiv"><img id="theImg" src="theImg.png" />Where is the image?</div>
Risposte:
Hai provato quanto segue:
$('#theDiv').prepend('<img id="theImg" src="theImg.png" />')
i miei 2 centesimi:
$('#theDiv').prepend($('<img>',{id:'theImg',src:'theImg.png'}))
$("#theDiv").append("<img id='theImg' src='theImg.png'/>");
Devi leggere la documentazione qui .
Se vogliamo cambiare il contenuto del <div>
tag ogni volta che image()
viene chiamata la funzione , dobbiamo fare così:
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>
Oltre al post di Manjeet Kumar (non aveva la dichiarazione)
var image = document.createElement("IMG");
image.alt = "Alt information for image";
image.setAttribute('class', 'photo');
image.src="/images/abc.jpg";
$(#TheDiv).html(image);