javascript – CodeMirror.禁用垂直滚动条

前端之家收集整理的这篇文章主要介绍了javascript – CodeMirror.禁用垂直滚动条前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我目前正在使用CodeMirror在浏览器的文本区域中编辑CODE.如果我有超过20行代码,它会向右添加一个垂直滚动条.但我不需要这个滚动条.相反,我需要编辑器大小垂直增长.

有人可以帮忙吗?

解决方法

在CodeMirror 3中,有一个禁用滚动条的选项:scrollbarStyle:“null”

从文档:

scrollbarStyle: string

Chooses a scrollbar implementation. The default is “native”,showing native scrollbars. The core library also provides the “null” style,which completely hides the scrollbars. Addons can implement additional scrollbar models.

@H_301_15@

结合这个:

>自动高度:高度:自动高度viewportMargin:Infinity(例如:http://codemirror.net/demo/resize.html)
>换行:lineWrapping:true

然后控制父div的高度/宽度效果很好

猜你在找的JavaScript相关文章