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.
在 Facebook 动态消息中,侧边栏(包含广告等)并非一直都是固定的。你怎么做到这一点?你可以做
<div style="position:fixed"></div>
但是你怎么能告诉它按照你的意愿来回改变呢?
如果您乐于使用 jQuery 进行操作:
$("#sideBar").css("position", "fixed");
然后将其改回:
$("#sideBar").css("position", "");