ThinkChat2.0新版上线,更智能更精彩,支持会话、画图、阅读、搜索等,送10W Token,即刻开启你的AI之旅 广告
~~~ h1{ text-align: center; } div{ height: 100px; background: red; font-size: 30px; color: #fff; text-align: center; margin-top:1000px; } ~~~ ~~~ <h1>关于我</h1> <div class="one"> 我的主页 </div> <div class="two"> 我的主页 </div> <script> $(function(){ $("h1").click(function(){ var offset = $(".one").offset().top; $("html,body").animate({scrollTop:offset},2000) console.log(offset); }) }) </script> ~~~ </body>