Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
无论滚动位置如何,我都需要将一个对象放置在浏览器视口的顶部。对象有 offsetTop。视口的函数或对象名称是什么?
有css属性:
position: fixed;
这是你要找的吗?
使用 css 而不是 JavaScript。给元素添加一个固定的类或者在元素上使用css。
.fixed { position: fixed; }
或者
.myElement { position: fixed; }
您还可以使用此 jquery 将固定类动态添加到元素
$('.myElement').addClass('fixed');