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.
我现在有一个 spritesheet 我想做的是预加载 spritesheet 图像我如何使用 javascript 来完成它。请帮帮我。
这与 HTML5 无关,也与 jQuery 无关。精灵表只是一个图像,所以像任何其他图像一样预加载。也就是说,“jQuery 方式”将是:
var $mySprite = $("<img>").attr("src", "myURL");
瞧。