企业🤖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>