jQuery-使页面回到顶部

Posted tynam

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了jQuery-使页面回到顶部相关的知识,希望对你有一定的参考价值。

 1 <!DOCTYPE html>
 2 <html lang="en">
 3 <head>
 4     <meta charset="UTF-8">
 5     <meta http-equiv="X-UA-Compatible" content="ie=edge">
 6     <title>back-top</title>
 7     <style type="text/css">
 8         #back-top
 9             width: 40px;
10             height: 40px;
11             position: fixed;
12             bottom: 40px;
13             right: 20px;
14             border: solid gray;
15             text-align: center;
16             font-size: 14px;
17             cursor: pointer;
18         
19 
20         .contain 
21             margin: 0 auto;
22             width: 1000px;
23             height: 2000px;
24             background: red;
25             font-size: 400px;
26         
27     </style>
28     <script src="jquery-3.4.1.js"></script>
29     <script>
30         $(function()
31             $(#back-top).click(function()
32                 // html,body取并级,处理浏览器兼容
33                 $("html,body").animate(
34                 scrollTop: 0,
35                 screenLeft: 0,
36                 , 400); 
37             );
38         );
39     </script>
40 </head>
41 <body>
42     <div id="back-top">回到顶部</div>
43     <div class="contain">这里是内容</div>
44 </body>
45 </html>

结果

技术图片

以上是关于jQuery-使页面回到顶部的主要内容,如果未能解决你的问题,请参考以下文章

常用小Demo:用js/jQuery实现回到页面顶部功能

在使用jquery的dialog,不知道为啥每次open后,整个页面就会回到顶部(滚动条被滑至最

点击按钮回到顶部

几条jQuery代码片段助力Web开发效率提升

jquery如何实现当页面下拉到一定位置时,右下角出现回到顶部图标

html 回到顶部片段