如果我有一个 div,并希望它在其滚动条位于底部时自动滚动,我将如何使用我这里的代码来做到这一点?它对我来说不能正常工作。
var scroll = false;
if ($("#console").scrollTop() == ($("#console").prop("scrollHeight") - 503)) {
scroll = true;
}
if (scroll == true) {
$("#console").prop({ scrollTop: $("#console").prop("scrollHeight") });
}
如果 div 的高度是动态的,而不是静态大小,我该怎么做?