开发者

scrollbar for div

开发者 https://www.devze.com 2023-01-16 05:01 出处:网络
Can someone provide me with information on how to add both开发者_如何学Go vertical and horizontal scrollbar using jquery? For example a textbox with an Id=\"txtBox\".Using CSS

Can someone provide me with information on how to add both开发者_如何学Go vertical and horizontal scrollbar using jquery? For example a textbox with an Id="txtBox".


Using CSS

#txtBox {
  overflow: scroll;
}

Adding the CSS property with JQuery:

$("#txtBox").css("overflow", "scroll");

You could also use overflow-x and overflow-y separately.

0

精彩评论

暂无评论...
验证码 换一张
取 消