如果我按如下方式编写听众,
$('.parent').bind('click', function() {
//...
})
<div class="parent">
<div class="children1"></div>
<div class="children2"></div>
<div class="children3"></div>
</div>
例如,我点击了children2
,是否可以查看点击parent
下的哪个“儿童”DIV?
由于
答案 0 :(得分:8)
是的,您可以查看e.target
(将您的处理程序更改为接受e
作为参数),可能使用closest
获取实际的第一个div
祖先单击元素(如果这些子div
具有后代)。
$('.parent').bind('click', function(e) {
// Here, `e.target` is the DOM element where the click occurred
var div = $(e.target).closest('div');
});
或者,如果仅希望在单击其中一个子项时触发处理程序,则可以通过delegate
或on
使用事件委派:
$('.parent').delegate('div', 'click', function(e) {
// Here, `this` is the child div that was clicked
});
// or
$('.parent').on('click', 'div', function(e) {
// Here, `this` is the child div that was clicked
});
请注意,args的顺序在delegate
(我更喜欢清晰度)和on
(它似乎是其他人都喜欢的)之间有所不同。
答案 1 :(得分:3)
<强> Working Demo 强>
您可以查看活动的目标。这里的事件是e。
$('.parent').bind('click', function(e) {
console.log(e.target);
});
答案 2 :(得分:0)
e.target.className
将获取触发了哪个事件的div的类名。
$('.parent').bind('click', function(e) {
if(e.target.className.indexOf('children') != -1) { // <-- Perform function only if any child is clicked
// do something
}
})
答案 3 :(得分:0)
你应该使用
$('.parent').on('click', 'div', function() {
// ...
});
应该使用 .on()代替.bind()。 this
引用事件处理程序中单击的div。