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.
我需要在类似于 facebook 或 gmail 的 div 上显示鼠标悬停时的滚动条。有没有免费的 JS 库呢?
如果 div 的溢出属性设置为隐藏,您可以将其设置为在悬停时滚动。
div.onmouseover =function () { this.style.overflow = "scroll"; }
也可以仅使用 css 来完成。
#divId { overflow:hidden; height: 100px; } #divId:hover { overflow:scroll }