问题很简单。
如何通过javascript将浏览器滚动到所需元素或所需位置?
非常感谢您的帮助!
到一个元素:
document.getElementById('id').scrollIntoView();
具有跨浏览器支持,并且可能是最简单的方法......
或特定位置:
window.scroll(x,y);
//Finds y value of given object
function findPos(obj) {
var curtop = 0;
if (obj.offsetParent) {
do {
curtop += obj.offsetTop;
} while (obj = obj.offsetParent);
return [curtop];
}
}
//Get object
var SupportDiv = document.getElementById('customer_info');
//Scroll to location of SupportDiv on load
window.scroll(0,findPos(SupportDiv));