jQuery 一句代码返回顶部
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了jQuery 一句代码返回顶部相关的知识,希望对你有一定的参考价值。
兼容各大主流浏览器,jQuery返回顶部,一句代码搞定
<a class="top" href="javascript:;" style="position:fixed;bottom:20px;right:20px;">Back to top</a> <script> $(‘.top‘).click(function (e) { $(‘html, body‘).animate({scrollTop: 0}, 800); }); </script>
欢迎交流
以上是关于jQuery 一句代码返回顶部的主要内容,如果未能解决你的问题,请参考以下文章