我有一个隐藏的联系表格,点击一个按钮即可部署。它的字段设置为 CSS 背景图像,并且它们总是比已切换的 div 稍晚出现。
我在本节中使用了这个片段<head>
,但没有运气(在我清除缓存之后):
<script>
$(document).ready(function() {
pic = new Image();
pic2 = new Image();
pic3 = new Image();
pic.src="<?php bloginfo('template_directory'); ?>/images/inputs/input1.png";
pic2.src="<?php bloginfo('template_directory'); ?>/images/inputs/input2.png";
pic3.src="<?php bloginfo('template_directory'); ?>/images/inputs/input3.png";
});
</script>
我正在使用 jQuery 作为我的库,如果我也可以使用它来解决这个问题,那就太棒了。
谢谢你的想法。