| 注册
请输入搜索内容

热门搜索

Java Linux MySQL PHP JavaScript Hibernate jQuery Nginx
gd7g
10年前发布

jQuery 实现图片预加载

// Insert preloaded image after it finishes loading  $('<img />')      .attr('src', 'imageURL.jpg')      .load(function(){          $('.profile').append( $(this) );          // Your other custom code      });