AI写作智能体 自主规划任务,支持联网查询和网页读取,多模态高效创作各类分析报告、商业计划、营销方案、教学内容等。 广告
原生js ~~~ // 返回顶部 if ( $("#returnTop").length ) { var _obj = document.getElementById("contents"); var btn = document.getElementById("returnTop"); var now = _obj.scrollTop; btn.onclick = function() { var timer = setInterval(function() { now = _obj.scrollTop; //滚动条竖直距离 speed = (0 - now) / 10; speed = Math.floor(speed); if (now == 0) { clearInterval(timer); } else { _objscrollTop = now + speed; //标准模式下的浏览器 _obj.scrollTop = now + speed; //怪异模式下的浏览器 } }, 10); } } ~~~ jquery ~~~ // totop $('[scroll="top"]').on("click",function(){ $("body,html").animate({scrollTop:0}); }); ~~~