简单滚动到顶部效果...代码在ie或firefox中不起作用,但在chrome中工作正常。
这样的HTML :
<a href="#" class="scrollTop"><i class="glyphicon glyphicon-chevron-up"></i></a>
和这样的剧本:
$(document.body).animate({
'scrollTop':'0'
},2000);
我尝试用$(document.body)
替换$("body")
,没有任何事情发生......
答案 0 :(得分:1)
我在这篇文章上发了一个类似的答案:
jquery to add ids to all paras to make them all linkable.
我在Firefox和IE 10上测试了以下代码并且工作正常。
$('html, body').animate({
scrollTop : 0
}, 500);