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.
选择元素展开/折叠时是否会触发事件?
我只是想在它展开时更改其容器的背景颜色,并在它折叠时恢复原始颜色。
只使用css
select:active { background-color: blue; }
不,没有,但是您可以使用 jQuery 中的触发函数触发您自己的事件,这将触发您可以定义的自定义事件。
您也可以只检查折叠的 div是否可见,添加一个类或使用数据API。
或者只是像 David Fregoli 所说的那样使用CSS 。