How do you add a scroll bar to a div?

后端 未结 6 1880
小鲜肉
小鲜肉 2020-12-08 12:42

I have a popup that displays some results, and I want a scroll bar to be display since the results are being cutt off (and I don\'t want the popup to be too long).

6条回答
  •  轻奢々
    轻奢々 (楼主)
    2020-12-08 13:19

    If you want to add a scroll bar using jquery the following will work. If your div had a id of 'mydiv' you could us the following jquery id selector with css property:

    jQuery('#mydiv').css("overflow-y", "scroll");
    

提交回复
热议问题