回答:
以下を試しましたか?
$('#theDiv').prepend('<img id="theImg" src="theImg.png" />')
私の2セント:
$('#theDiv').prepend($('<img>',{id:'theImg',src:'theImg.png'}))
<div>
関数image()
が呼び出されるたびにタグのコンテンツを変更する場合は、次のようにする必要があります。
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>
Manjeet Kumarの投稿に加えて(彼には宣言がありませんでした)
var image = document.createElement("IMG");
image.alt = "Alt information for image";
image.setAttribute('class', 'photo');
image.src="/images/abc.jpg";
$(#TheDiv).html(image);