我想知道是否有可能隐藏滚动条,而仍然使用鼠标/键盘启用滚动。
我尝试使用CSS :overflow: hidden;。效果是禁用滚动条 和 禁用滚动。
overflow: hidden;
为了将来参考,还有一个没有jQuery的解决方案-仅使包装div样式包含overflow:hidden并使用以下JavaScript两行代码:
overflow:hidden
// get the width of the textarea minus scrollbar var textareaWidth = document.getElementById("textarea").scrollWidth; // width of our wrapper equals width of the inner part of the textarea document.getElementById("wrapper").style.width = textareaWidth + "px";