Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我在我的 Web UI 中实现了这些库 [1]。问题是提供的文本首先被渲染到缓冲区,然后只有可见部分被传输到终端显示缓冲区。所以我想让终端可以滚动。
我应该如何进行?
[1] - http://www.masswerk.at/termlib/
相当模糊的问题描述,但我认为这个 CSS 会有所帮助。
\* { overflow: scroll; }
我意识到这个答案是在问题发生几年后,但是可以在创建对象后通过 javascript 简单地应用溢出term:
term
document.getElementById("termDiv").style.overflow = "scroll";