单击 Div 时触发操作,但单击该 Div 内的链接时不触发操作

发布于 2024-12-28 22:59:14 字数 224 浏览 0 评论 0原文

我想通过单击 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

叫嚣ゝ 2025-01-04 22:59:14

单击该 div 内的链接时停止事件传播。

$("ol.compacted .tl_general a").click(function (e) {
    e.stopPropagation();
});

Stop the event propagation when clicked on link inside that div.

$("ol.compacted .tl_general a").click(function (e) {
    e.stopPropagation();
});
那片花海 2025-01-04 22:59:14

确保事件目标是正确的元素。

$("ol.compacted .tl_general").click(function (e) {
    var $this = $(this);
    if ( $this.is(e.target) ) {
        $this.toggleClass("re-expanded");
    }
});

ensure that the event target is the correct element.

$("ol.compacted .tl_general").click(function (e) {
    var $this = $(this);
    if ( $this.is(e.target) ) {
        $this.toggleClass("re-expanded");
    }
});
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文