我正在升级一个基本的照片库以使用 jQuery(哇哦!)。
到目前为止,我了解 jQuery 的语义,但有一个例外:我似乎无法将我的大脑包裹在整个图像预加载的事情上。我已经有了一个完整的 div 类和 id 的布局。
图像部分大致如下:
<div id="main">
<img id="spotHolder" src="images/somePic.jpg">
</div>
<div id="others">
<img class="otherPics" src="images/someOtherPic.jpg">
</div>
我使用jQuery Howto作为预加载图像的指南;但我不知道我需要对 html 做什么(如果有的话?)。
寻找关于做什么的想法。