我有一个现场网站。我想添加一个滚动到顶部的浮动。我尝试了很多js或css代码,但没有用。有什么建议吗?先感谢您。

最佳答案

您可以这样尝试。

<style type="text/css">
.scrollToTop {position:fixed;bottom:100px;right:100px;}
</style>

<a class="scrollToTop" href="javascript:scrollToTop();">Scroll to top</a>

<script type="text/javascript">
function scrollToTop() {
    $(window).scrollTop(0); // If you work with jQuery,
    document.body.scrollTop = 0; // Or not.
}
</script>

09-19 01:28