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.
我有一个按钮 div,我附加了一个 jQuery 动画,它在其他事件上公开/隐藏它。
它工作得很好,但我不清楚他们正在改变的 div 的哪些样式元素,所以,我不确定如何设置它的 CSS 以便它开始隐藏,然后在启动动画的事件时暴露出来被踢开。
据我了解,您想知道在基本页面代码中放置哪些属性。在这种情况下,只需display:none;在按钮元素上放一个简单的元素——jQuery 足够聪明,可以处理其余的事情。
display:none;
你有几个选择:
用 css
display: none;
或 jQuery
.hide()
一旦它被“隐藏”,就使用display: none;jquery将它设置为的东西