我想用jquery在页面滚动上显示circlefull动画,但是没有一个滚动功能可以工作。
> $("body").scrollTop();
0
<script src='http://ajax.googleapis.com/ajax/libs/jquery/1.11.0/jquery.min.js'> </script>
<script type="text/javascript">
$(document).ready( function (){
alert('ready');
$('#htmlbody').scroll( function (){
alert('scroll');
});
});
</script>
没有人工作。有什么问题?任何错误都不会在控制台中登录。
答案 0 :(得分:0)
$('#htmbody')
错了。
使用此:
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.11.0/jquery.min.js"></script>
<script type="text/javascript">
$(document).ready(function(){
$(window).scroll(function(){
alert('scroll');
});
});
</script>
演示:
如果您想致电HTML
和BODY
动画滚动顶部使用:
$('html, body').animate({scrollTop:'400px'},{duration:1000});
演示: