0

这是评论的 JSfiddle。我正在尝试使用修改 css 的 jquery 为 div 的高度设置动画。然而,由于这个项目的动态特性,高度将是未知的,并且是通过变量找到的。

http://jsfiddle.net/8JwE9/6/

$('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);
    });
4

1 回答 1

1
$(this).animate({height: '+=' + pollHeight},1000);

这应该可以解决问题。

于 2013-03-28T04:06:17.947 回答