gpt4 book ai didi

jquery - 如何组合两个使用 .on 的 jQuery 选择?

转载 作者:行者123 更新时间:2023-12-01 06:28:29 25 4
gpt4 key购买 nike

我有这个 jQuery:

$('#detail')
.on('click', '.deleteLink', function () {
dialog(this);
return false;
})
$('#detail')
.on('click', '.editLink', function () {
dialog(this);
return false;
})

有没有办法将这些结合起来。抱歉,我根本不了解 jQuery。

最佳答案

使用逗号选择器将其绑定(bind)到两者的父级:

// Instead of body, you might want a more specific common parent
$('body').on('click', '#detailD .deleteLink, #detail .editLink', function () {
dialog(this);
return false;
});

或者您可以简单地创建该函数一次:

var handler = function () {
dialog(this);
return false;
};
$('#detailD').on('click', '.deleteLink', handler);
$('#detail').on('click', '.editLink', handler);

关于jquery - 如何组合两个使用 .on 的 jQuery 选择?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12131598/

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