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.
:before:当我通过 CSS 伪元素插入并被:after点击的内容时,我想触发一个 jQuery 动画。但是,我不确定如何执行此操作;我的第一个猜测,$(#id:before).click()没有奏效。这是 jQuery 功能的一部分吗?如果是这样,我将如何选择before/after内容?
:before:
:after
$(#id:before).click()
before
after
jQuery 不支持 CSS:before和:after选择器。要选择兄弟姐妹,请使用.siblings()然后从那里过滤。
:before
.siblings()
http://api.jquery.com/siblings/