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.
大家好,这是我的问题
我在我的网站上使用 jquery 手风琴。
我试图在手风琴头中添加一个小的向下滑动菜单,它会很好,但问题是每当我单击菜单时,我的向下滑动 mu 即将到来,同时手风琴也在扩展。
我不希望在单击小菜单图标时激活手风琴
使用stopPropagation,这将防止点击冒泡到手风琴的点击处理程序:
stopPropagation
$('.small-menu-icon').click(function(e) { e.stopPropagation(); // show menu });