gpt4 book ai didi

javascript - 我需要使用 React.JS 水平滚动到 div id ?

转载 作者:行者123 更新时间:2023-11-30 14:56:21 25 4
gpt4 key购买 nike

scrollFunc()
{
document.getElementById("myID").scrollIntoView({"block":"center"})
}

我尝试了scrollIntoView({"block":"center"}) 在 Chrome 中完美运行,但在 Internet Explorer 上出现问题!

最佳答案

scrollIntoView 在 IE/Edge 中有部分支持。

scrollIntoView({"block":"center"}) IE/Edge 不支持


  • 您可以选择scrollIntoView(true)对应于

scrollIntoView({block: "start", inline: "nearest"})

  • 您可以选择scrollIntoView(false)对应于

scrollIntoView({block: "end", inline: "nearest"})


如果您需要{"block":"center"},我建议您使用其他 API 或方法。

在此处了解更多相关信息。

https://developer.mozilla.org/en-US/docs/Web/API/Element/scrollIntoView https://caniuse.com/#search=scroll

关于javascript - 我需要使用 React.JS 水平滚动到 div id ?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47218121/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com