gpt4 book ai didi

javascript - jQuery多选择器,获取哪个选择器触发事件

转载 作者:塔克拉玛干 更新时间:2023-11-02 21:53:48 26 4
gpt4 key购买 nike

处理带有多个选择器的事件时,例如:

$('.item a, .another-item a').click(function(e) {

});

是否可以确定哪个父选择器触发了事件?是 .item 还是 .another-item

谢谢!

最佳答案

由于选择器几乎可以是任何东西,因此您必须检查特定的,例如:

if($(this).is('.item a')){
//your code here
} else if ($(this).is('.another-item a')){
//more here
}

关于javascript - jQuery多选择器,获取哪个选择器触发事件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12941806/

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