这是评论的 JSfiddle。我正在尝试使用修改 css 的 jquery 为 div 的高度设置动画。然而,由于这个项目的动态特性,高度将是未知的,并且是通过变量找到的。
$('span').hide();
$('.span3').click(function() {
var pollheight = $(this).find('span').height().toString(); //Trying to increase the DIV += this height (actually trying to toggle it but i'll hit that bridge later.
//$(this).find('span').append(pollheight);
$(this).animate({height: '+=80'},1000); //Trying to replace +=80 with a variable
$(this).find('span').toggle(1000);
});