开发者

scrollbar for div

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

上一篇:

下一篇:

精彩评论

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

最新问答

问答排行榜