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>