日期:2014-05-16 浏览次数:20378 次
首先设置内容的高度,并制定超出高度部分隐藏
<div id='refer_a' style='height:80px;overflow:hidden'>内容<br /> </div> <a href='#' onclick='slideDiv(\"refer_a\",80);return false;' class='afblue'>更多 >></a>
?单击更多 展开全部内容,再次单击隐藏
function slideDiv(divID,height){ var obj=document.getElementById(divID).style; if(obj.height==""){ obj.height=height+"px"; obj.overflow="hidden"; }else{ obj.height=""; obj.overflow=""; } }
?