jQuery animate scrollTop无法在IE 7中运行

Ale*_*lex 10 jquery cross-browser

以下适用于Chrome/FF等...

$('body').animate({scrollTop : 0}, 0);
Run Code Online (Sandbox Code Playgroud)

但是,在IE 7中,它没有做任何事情.
还有其他选择吗?

Fio*_*ite 21

编辑正如许多人所指出的,最好使用:

$('body, html').animate({scrollTop : 0}, 0);
Run Code Online (Sandbox Code Playgroud)


ben*_*tan 17

$('body, html').animate({scrollTop : 0}, 0);
Run Code Online (Sandbox Code Playgroud)