欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

jQuery中animate()的方法以及$("body").animate({"scrollTop":top})不被Firefox支持问题的解决

程序员文章站 2022-06-30 10:30:06
...

转载请注明出处:http://blog.csdn.net/dongdong9223/article/details/50846678 
本文出自【我是干勾鱼的博客

jQuery中animate()的方法可以去w3school查看,这里主要说一下:

$("body").animate({"scrollTop":top})

不被Firefox支持问题的解决。

其实是使用body的:

$("body").animate({"scrollTop":top})

只被chrome支持,而不被Firefox支持。

而使用html的:

$("html").animate({"scrollTop":top})

只被Firefox支持,而不被chrome支持。

如果想让这段jschromeFirefox都支持的话,应该这样:

$("html,body").animate({"scrollTop":top})

看到了吗,就是将htmlbody这两者都加上就可以了。

【例1】$(".pg2_gotop").click(function(){  //此时pg2_gotop这个标签不能是a标签,否则速度失效

    $('html,body').animate({scrollTop:0},'slow');

});

【例2】var top = $(".down").offset().top-50;

$("html,body").animate({"scrollTop":top});

具体详情见https://www.jb51.net/article/110287.htm