The Element.scrollIntoView() method scrolls the element on which it's called into the visible area of the browser window.
语法
element.scrollIntoView(); // 等同于element.scrollIntoView(true)
element.scrollIntoView(alignToTop); // Boolean型参数
element.scrollIntoView(scrollIntoViewOptions); // Object型参数
参数
| 参数 | 说明 | 类型 | 可选值 | 默认值 |
|---|---|---|---|---|
| alignToTop | -- | boolean | --- | false |
| scrollIntoViewOptions | -- | object | -- | -- |










