我有一个容器,包含 3 个选项卡,当单击一个选项卡时,容器会获得一个新类 - 当它获取类时,它会更改 CSS 中的 backgroundImage,并更改选项卡容器中的内容 - 我的问题是背景图像相当重,它是PNG文件,因为我需要透明度,所以我不能将它们更改为JPG左右......
所以我想知道是否有一种方法可以在更改选项卡容器中的内容之前预加载背景图像,也许使用 .load() 函数或类似的东西?我到目前为止的脚本是:
$(".tabs-content div.tabpage").hide(); // Initially hide all content
$(".tabs li:first").attr("id", "current"); // Activate first tab
$(".tabs-content div:first").fadeIn(); // Show first tab content
$('.tab-container a').click(function(e) { //If only tabs, change to .tabs a
e.preventDefault();
var className = $(this).attr("name")
$(document).find(".tab-container").attr("class", "grid_9 tab-container " + className);
if ($(this).closest("li").attr("id") == "current") { //detection for current tab
return
} else {
$(".tabs-content div.tabpage").hide(); //Hide all content
$(".tabs li").attr("id", ""); //Reset id's
$(this).parent().attr("id", "current"); // Activate this
$('#' + $(this).attr('name')).fadeIn(); // Show content for current tab
}
});