有时,CSS 背景图像无法加载。这可能是什么原因?
我有一个这样的Javascript代码:
function progressBar(file_id) {
pbar = ($("<div />").attr('id',file_id+"-statusicon").css({"background-image" : "url('../img/test-skip-icon.png')", "width" : "16px", "height" : "16px"}));
$("#"+file_id+" .status").append(pbar);
}
然后我在另一个函数中调用它:
progressBar(file_id);
问题是有时图像加载正确,有时不正确。png 图像大小约为 9KB。
有什么想法吗?