我想要实现的是:
- 用户在 .question div 中单击 h4
- .question div 扩展为 90px,它的子段落通过将其 margin-top 设置为 0 滑入视图
- 当用户第二次单击 h4 元素时,.question div 应返回 35px 高度,并且段落应将 margin-top 设置为 35px。
jQuery(document).ready(function($) {
$('.question h4').click(function () {
$(this).parents('.question').css('height', '90');
$(this).siblings('p').css('margin-top', '0');
$(this).parent().addClass('open');
});
$('.question.open h4').click(function () {
$(this).parent.removeClass('open');
$(this).parents('.question').css('height', '65px');
$(this).siblings('p').css('margin-top', '35px');
});
});