懒人听书2020年度好课盘点
$(document).on("click", ".tab-btn", function() {
var index = $(".tab-btn").index(this);
$(".tab-mod").each(function(idx, mod) {
if (idx == index) {
$(mod).removeClass("hide");
} else {
$(mod).addClass("hide");
}
});
$(".btn-img").each(function(idx, mod) {
if (idx == index) {
$(mod).removeClass("hide");
} else {
$(mod).addClass("hide");
}
});
});