方法一:
<style type="text/css"> #table1,#table2{ overflow-y:auto; overflow-x:hidden; min-height:50px; max-height:300px; display: none; } </style>
方法二:三元运算符
$(function(){ $("#sss").height() < 200 ? $("#sss").height('auto') : $("#sss").css('overflow', 'auto').height(200); });