Tag: 预加载程序

预加载CSS图像

我有一个隐藏的联系表单,部署点击一个button。 它的字段被设置为CSS背景图像,并且它们总是比切换的div晚出现。 我在<head>部分使用了这个代码片段,但没有运气(在清除caching之后): <script> $(document).ready(function() { pic = new Image(); pic2 = new Image(); pic3 = new Image(); pic.src="<?php bloginfo('template_directory'); ?>http://img.dovov.cominputs/input1.png"; pic2.src="<?php bloginfo('template_directory'); ?>http://img.dovov.cominputs/input2.png"; pic3.src="<?php bloginfo('template_directory'); ?>http://img.dovov.cominputs/input3.png"; }); </script> 我使用jQuery作为我的库,如果我可以用它来解决这个问题,这将是很酷的。 感谢您的尽pipe。