我有多个不同高度的 div 需要切换,每个 div 都有相同的类。实现这一目标的最佳方法是什么?
$('.smallify').on('click', function() {
if ($(this).parent('.container').css('height', '');) {
$(this).parent('.container').css('height', '20px');
} else {
$(this).parent('.container').css('height', '');
});