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.
在 html 中显示\隐藏块的常用方法是切换它的显示属性。但是在渲染性能的情况下,使用z-indexes不是更好吗?
http://jsfiddle.net/WawVH/
真的是偏好问题。Display:none 完全删除元素,我认为它不再是 DOM 结构中的节点,从而节省内存。如果我错了,有人纠正我。
如果您的内容溢出,您的实施可能会遇到问题。
http://jsfiddle.net/yeQfC/
但是你总是可以用
overflow:hidden;
在您的 .content CSS 定义中
http://jsfiddle.net/gF3JC/