如果以下代码有效(当然可以)
$( 'html, body' ).animate(
{
"scrollTop": "500"
},
500
);
那么为什么下面的代码不起作用?
$( window ).animate(
{
"scrollTop": "500"
},
500
);
如果以下代码有效
$( window ).scroll( myScrollFunctionHandler );
那么为什么下面的代码不起作用?
$( 'html, body' ).scroll( myScrollFunctionHandler );
有人可以对为什么必须这样做一个全面的解释吗?