我有一个隐藏的联系表单,这是部署点击一个按钮。它的字段被设置为 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 作为我的库,如果我也可以使用它来安排这个问题,那将会很酷。
谢谢你的关心。