我试图在我的页面上获得一个特定的div来自动开始向下滚动,然后在页面加载后备份。
我为javascript写了这个:
<script> function scroll(speed) {
$('#scrollingcontent').animate({ scrollTop: $(document).height() - $(window).height() }, speed, function() {
$(this).animate({ scrollTop: 0 }, speed);
});
}
speed = 1000;
scroll(speed)
setInterval(function(){scroll(speed)}, speed * 2);</script>
Chrome告诉我,我有一个引用错误,并且没有定义$。 我想要动画的div具有滚动内容的id。
感谢您的帮助!
答案 0 :(得分:0)
检查您是否正确附加了jQuery。
<head>
<script src="jquery-1.11.1.min.js"></script>
</head>
更多: - http://www.w3schools.com/jquery/jquery_install.asp
希望这会有所帮助。干杯!