欢迎使用CSDN-markdown编辑器

来源:互联网 发布:windows 10 fall 推送 编辑:程序博客网 时间:2024/05/16 08:29

js jquery 点击平滑滚动到页面顶部

这里写代码片<div style="position:fixed;right:0; bottom:10px;width:50px;height:50px;line-height:50px;border:1px solid #ddd;" id="back">返回顶部</div><script  src="jquery-2.1.1.js" type="text/javascript"></script><script type="text/javascript"> $(document).ready(function(){ $('#back').click(function(){ $('html, body').animate({scrollTop:0}, 'slow'); return false; }); }) </script> 
0 0