在chrome中使用body滚动:
$("body").animate({"scrollTop":200},600)
但是在firefox中却要使用html:
$("html").animate({"scrollTop":200},600)
综合一下,这样就都可以滚动了(其他浏览器也没问题):
$("html,body").animate({"scrollTop":200},600)
时间: 2024-10-08 16:21:45
在chrome中使用body滚动:
$("body").animate({"scrollTop":200},600)
但是在firefox中却要使用html:
$("html").animate({"scrollTop":200},600)
综合一下,这样就都可以滚动了(其他浏览器也没问题):
$("html,body").animate({"scrollTop":200},600)