如何使用ajax重新加载网页的一部分

时间:2012-12-04 08:36:07

标签: ajax reload

我试图在上传图片后刷新网页的图像部分。

但是没有成功。

我需要你的帮助。

plz帮助我使用ajax重新加载网页。

提前致谢。

1 个答案:

答案 0 :(得分:0)

此代码显示ALERTS - 图像加载前和加载图像后。 您可以使用此处理数据。

$(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);
      }
     });

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); } });