您好我正在尝试将图像加载到隐藏的 div 中。我需要多次这样做,我不想从缓存中加载图像。这是代码。
document.getElementById('container').innerHTML = '<img src="http://blog.dwolla.com/wp-content/uploads/2012/09/stackoverflow.png" onload="onLoad()" />'
function onLoad() {
alert()
}
有没有办法在没有缓存的情况下做到这一点?谢谢...