单击 Div 时触发操作,但单击该 Div 内的链接时不触发操作
我想通过单击 DIV 的类来切换它,但不是在单击该 DIV 内的链接时切换。
我尝试了这个,但即使单击链接,它也会切换课程:
$("ol.compacted .tl_general:not(a)").click(function () {
$(this).toggleClass("re-expanded");
});
我能做什么?提前致谢!
I want to toggle a class of a DIV by clicking on it, but not while clicking a link inside that DIV.
I tried this but it toggle the class even when a link is clicked:
$("ol.compacted .tl_general:not(a)").click(function () {
$(this).toggleClass("re-expanded");
});
What could I do? Thanks in advance!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
单击该 div 内的链接时停止事件传播。
Stop the event propagation when clicked on link inside that div.
确保事件目标是正确的元素。
ensure that the event target is the correct element.