上传图片后,我正在尝试刷新网页的图片部分。
却得不到成功。
我需要你的帮助。
请帮助我使用 ajax 重新加载网页。
提前致谢。
此代码显示警报 - 加载图像之前和加载图像之后。您可以使用它随时随地处理您的数据。
$(document).ready(function(){
function imageLoaded() {
// function to invoke for loaded image
alert("image loaded......");
}
$('img').each(function() {
alert("image loading......");
if( this.complete ) {
imageLoaded.call( this );
} else {
$(this).one('load', imageLoaded);
}
});
});