textarea的滚动条是否开启

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了textarea的滚动条是否开启相关的知识,希望对你有一定的参考价值。

要设置textarea文本域的滚动条是否开启,使用style.overflow-x属性来控制。如:如果要隐藏该文本域的横向滚动条,在style属性中增加overflow-x属性控制,如下:
<textarea id=txtComments style="overflow-x:hidden"></textarea>
相应的,若要隐藏纵向滚动条:
<textarea id=txtComments style="overflow-y:hidden"></textarea>
如果使用代码控制的话,可能需要如下代码实现:
document.all("txtComments").style.overflowX="hidden";

overflow-x,overflow-y的可取值为:visible(默认取值),hidden,auto,scroll。具体解释参加如下文档(摘自MSDN帮助文档):
visible (Default)- Content is not clipped and scroll bars are not added. Elements are clipped to the size of the containing window or frame.
scroll -Content is clipped and scroll bars are added, even if the content does not exceed the dimensions of the object.
hidden Content that exceeds the dimensions of the object is not shown.
auto Content is clipped and scrolling is added only when necessary.

原文链接:http://blog.sina.com.cn/s/blog_4d54fab10100la4q.html

以上是关于textarea的滚动条是否开启的主要内容,如果未能解决你的问题,请参考以下文章

如何在网页的文本框中加滚动条

带滚动条的只读 TextArea [JavaFx]

JavaFX TextArea 滚动条移动事件

Element textarea设置高度与滚动条隐藏

如何使 TextArea 具有最大尺寸和滚动条?

JavaFX - 如何从TextArea隐藏滚动条?