我正在尝试将图像放置在 div 中。
function pleaseW(){
$('#info').html("Please wait ..."); //1 this works
$('#info').html("<img id='busy01' src='busy01.gif' />"); //2 doesn't work
$('#info').append("<img id='busy01' src='busy01.gif' />"); //3 doesn't work
$('#info').prepend("<img id='busy01' src='busy01.gif' />"); //4 doesn't work
}
调用的图像busy01.gif
与当前文件位于同一文件夹中。问题是第 2、3 和 4 行没有在 div 中放置图像。
如果我将 html 直接放入页面中,则会显示图像。页面一定有一些不相关的问题,因为这个 Javascript/jQuery 是完全有效的。