我有以下 Jquery,在单击复选框时,它会重新加载一个 DIV,传递框的值并根据查询显示新项目。
我想有一个“加载”栏3秒左右......在加载DIV的内容之前,之后淡出。然后加载带有淡入效果的 DIV。我尝试了几件事,但没有奏效。
这是我的代码。
谢谢!
jQuery(document).ready(function($) {
$("input:checkbox").change(function() {
if ($(this).is(':checked'))
{
$(".loadingItems").delay(3000).fadeOut(3000);
var color = [];
color.push($(this).val());
$(".indexMain").load('indexMain.php?color='+color);
}
else if ($(this).not(':checked'))
{
$(".indexMain").load('indexMain.php');
}
});
});