我个人的解决方案是通过数据属性连接链接和面板。这样,您只需要一段代码并在链接之间共享一个类。
链接是这样的:
<a href="#" class="btn-slider" data-target="#panel">
然后代码如下所示:
$(document).ready(function () {
// Apply to all buttons of class btn-slider
$(".btn-slider").click(function () {
// remove active from all active links and collapse them
$('.btn-slider.active').each(function () {
var $link = $(this);
$($link.attr('data-target')).slideUp("slow");
$link.removeClass("active");
});
// Add active to the clicked link and slidedown the matching content
$(this).addClass("active");
$($(this).attr('data-target')).slideDown("slow");
return false;
});
if (!panel.is(':visible')) {
$('.panel').hide(opts.speed);
$('.btn-slider').removeClass('active');
}
});
这段代码可以再微调一点,但是 2 分钟的工作期望什么:)
根据切换的要求,这稍微好一些:
$(document).ready(function () {
$(".btn-slider").click(function () {
var $clicked = $(this);
$('.btn-slider.active').each(function () {
var $link = $(this);
// If this is not the clicked link, collapse its panel
if (!$link.is($clicked)) {
$($link.attr('data-target')).slideUp("slow");
$link.removeClass("active");
}
});
$clicked.toggleClass("active");
if ($clicked.hasClass("active")) {
$($clicked.attr('data-target')).slideDown("slow");
} else {
$($clicked.attr('data-target')).slideUp("slow");
}
return false;
});
if (!panel.is(':visible')) {
$('.panel').hide(opts.speed);
$('.btn-slider').removeClass('active');
}
});