解决方法
这应该通过单击实际div来切换完整div的显示,您可以将click事件添加到您想要的任何触发器.
HTML:
<div id="blah"> Long...Content </div>
使用Javascript:
$('#blah').css({height:'20px',overflow:'hidden'}); $('#blah').on('click',function() { var $this = $(this); if ($this.data('open')) { $this.animate({height:'20px'}); $this.data('open',0); } else { $this.animate({height:'100%'}); $this.data('open',1); } });