scrollHeight + 60对我来说不起作用javascript / jquery

时间:2013-03-19 06:59:33

标签: javascript jquery

到目前为止我有这个代码:

interestedP.animate({'max-height': (interestedP[0].scrollHeight + 60 + 'px')}, "slow");

它也可以没有'px',但+60永远不会解决问题。如何解决这个问题?

1 个答案:

答案 0 :(得分:1)

尝试

interestedP.animate({'max-height': (interestedP[0].scrollHeight + 60) + 'px'}, "slow");

演示:Fiddle