标签:ntb als 元素 底部 instant element div doc 定位
var element = document.getElementById("box"); element.scrollIntoView();//顶部 element.scrollIntoView(false);//底部 element.scrollIntoView({block: "end"}); element.scrollIntoView({behavior: "instant", block: "end", inline: "nearest"});
scrollIntoView将指定元素定位到浏览器顶部,底部,中间
标签:ntb als 元素 底部 instant element div doc 定位
原文地址:https://www.cnblogs.com/wangyunhui/p/10146137.html