Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我的网站有大量的大图像,这会降低我的网站速度。我想在没有加载网站后加载我网站的所有图像。
最好的解决方案是什么???我想要它在 jQuery 中。感谢任何 NICE JQUERY PLUGIN 建议。
提前致谢。
我最喜欢的是http://www.appelsiini.net/projects/lazyload
我曾经在我的 ASP 页面上执行此操作。
只需像这样创建所有图像标签
<img ID="img_1"/>
一旦完成,使用 Jquery :
$(document).ready(function(){ document.img_1.src="YourImageUrl"; });
你去吧,一旦你的页面加载完内容,它就会显示你所有的图像。