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.
我正在为特色内容滑块使用 Prototype/Scriptaculous 库,它工作得很好,但需要预加载图像。
我主要使用 jQuery,所以我不确定它是如何使用 Prototype 完成的。如果您想看一下,这是滑块脚本。
你可以用几行简单的 Javascript 来做到这一点
var preload = [] for(var x=0;x<slider_images.length;x++) { preload[x] = new Image() preload[x].src = slider_images[x] }