标签:max isp 自适应 nbsp hid blog 三元运算符 overflow min
方法一:
<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); });
标签:max isp 自适应 nbsp hid blog 三元运算符 overflow min
原文地址:http://www.cnblogs.com/person008/p/7271347.html