Ich habe ein Div-Tag
<div id="theDiv">Where is the image?</div>
Ich möchte ein Bild-Tag innerhalb des div hinzufügen
Endresultat:
<div id="theDiv"><img id="theImg" src="theImg.png" />Where is the image?</div>
Ich habe ein Div-Tag
<div id="theDiv">Where is the image?</div>
Ich möchte ein Bild-Tag innerhalb des div hinzufügen
Endresultat:
<div id="theDiv"><img id="theImg" src="theImg.png" />Where is the image?</div>
Antworten:
Haben Sie Folgendes versucht:
$('#theDiv').prepend('<img id="theImg" src="theImg.png" />')
meine 2 Cent:
$('#theDiv').prepend($('<img>',{id:'theImg',src:'theImg.png'}))
$("#theDiv").append("<img id='theImg' src='theImg.png'/>");
Sie müssen die Dokumentation hier lesen .
Wenn wir den Inhalt des <div>
Tags bei jedem image()
Aufruf der Funktion ändern möchten , müssen wir Folgendes tun:
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>
In addition to Manjeet Kumar's post (he didn't have the declaration)
var image = document.createElement("IMG");
image.alt = "Alt information for image";
image.setAttribute('class', 'photo');
image.src="/images/abc.jpg";
$(#TheDiv).html(image);