답변:
다음을 시도 했습니까?
$('#theDiv').prepend('<img id="theImg" src="theImg.png" />')
내 2 센트 :
$('#theDiv').prepend($('<img>',{id:'theImg',src:'theImg.png'}))
<div>
함수 image()
가 호출 될 때마다 태그 의 내용을 변경하려면 다음과 같이해야합니다.
자바 스크립트
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>