答案 0 :(得分:1)
问题是因为#box
元素未在您的示例中滚动 - window
是。默认情况下,块元素将展开以适合其内容。要停止此行为并允许元素滚动,您需要设置其height
和overflow
属性:
#box {
height: 100px; /* amend this as required */
overflow: scroll;
}
答案 1 :(得分:1)
您应该为div添加一个height和overflow属性,以使'scroll'事件有效。
#box {
overflow: auto;
height: 200px;
}