gpt4 book ai didi

javascript - 使用 :not selector in tandem with . on()

转载 作者:行者123 更新时间:2023-11-30 13:18:51 26 4
gpt4 key购买 nike

我正在尝试选择所有没有 .agency 类的 a href:

$("#content-listing").on("click", "a:not(li.agency a)",
function () {
$("#content-listing").hide();
});

我也试过:

$("#content-listing").on("click", "a.not('li.agency a')", function () {
$("#content-listing").hide();
});

最佳答案

评论后:

Because my li has the class agency and I want to select all links in the <div> except li.agency a

然后使用这个:

$("#content-listing").on("click", "li:not(.agency) a", function () {
$("#content-listing").hide();
});

关于javascript - 使用 :not selector in tandem with . on(),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11042862/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com