我试图使用电子制作一个虚假的控制台,无论我尝试什么,我似乎无法在包含文本的div的底部滚动。我使用过这段代码:
var d = $('#div1');
d.scrollTop(d.prop("scrollHeight"));
以上代码的大量变体,包括jQuery和javascript。我有电子问题吗?我只想滚动到div的底部。
答案 0 :(得分:0)
这就是我修复它的方法。
http://lifesweeter21.blogspot.com/2015/02/how-to-scroll-top-or-bottom-of-document.html
使用此代码:
function gobottom(){
var documentHeight=document.documentElement.offsetHeight;
var viewportHeight=window.innerHeight;
window.scrollTo(0,documentHeight-viewportHeight);
}