Element. scrollIntoView()
element.scrollIntoView(); // 支持一個(gè)參數(shù),默認(rèn)為true
element.scrollIntoView(true); // 滾動(dòng)到目標(biāo)元素頂部
element.scrollIntoView(false); // 滾動(dòng)到目標(biāo)元素底部
參數(shù)類型除了boolean外還支持object
element.scrollIntoView({
block: "start"
})
// 相當(dāng)于 true
element.scrollIntoView({
block: "end"
})
// 相當(dāng)于 false