方法一:主要是

min-height:50px; max-height:200px;overflow: auto;
<div id="ss" style="width:200px; border:1px solid #000000;min-height:50px; max-height:200px;overflow: auto;">

方法二:三元运算符

$(function(){
           $("#sss").height() < 200  ? $("#sss").height('auto') : $("#sss").css('overflow', 'auto').height(200);
          });

 如果想要好看一些的滚动条的话,网上下载一下插件就行了。

 

相关文章:

  • 2021-11-08
  • 2022-12-23
  • 2022-01-24
  • 2021-08-03
  • 2021-12-23
  • 2021-09-01
  • 2021-12-21
  • 2021-08-28
猜你喜欢
  • 2021-12-08
  • 2021-06-15
  • 2021-07-13
  • 2021-11-18
  • 2022-01-10
  • 2021-11-08
相关资源
相似解决方案