如何点击事件只对父DIV,而不是孩子?

时间:2012-02-07 20:29:51

标签: jquery events onclick

我有一个分类为foobar的DIV,以及DIV内部的一些DIV,这些DIV没有被删除,但我认为他们继承了foobar类:

$('.foobar').on('click', function() { /*...do stuff...*/ });

我希望只有在点击DIV中的某个位置而不是点击其子DIV时才会触发。

11 个答案:

答案 0 :(得分:388)

如果e.targetthis的元素相同,则表示您没有点击后代。

$('.foobar').on('click', function(e) {
  if (e.target !== this)
    return;
  
  alert( 'clicked the foobar' );
});
.foobar {
  padding: 20px; background: yellow;
}
span {
  background: blue; color: white; padding: 8px;
}
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
<div class='foobar'> .foobar (alert) 
  <span>child (no alert)</span>
</div>

答案 1 :(得分:42)

如果您不介意只定位较新的浏览器,还有另一种方法可行。只需添加CSS

即可
pointer-events: none;

要捕获点击的div的任何子项。这是支持表

http://caniuse.com/#feat=pointer-events

答案 2 :(得分:23)

你可以使用鼓泡对你有利:

$('.foobar').on('click', function(e) {
    // do your thing.
}).on('click', 'div', function(e) {
    // clicked on descendant div
    e.stopPropagation();
});

答案 3 :(得分:19)

//bind `click` event handler to the `.foobar` element(s) to do work,
//then find the children of all the `.foobar` element(s)
//and bind a `click` event handler to them that stops the propagation of the event
$('.foobar').on('click', function () { ... }).children().on('click', function (event) {
    event.stopPropagation();
    //you can also use `return false;` which is the same as `event.preventDefault()` and `event.stopPropagation()` all in one (in a jQuery event handler)
});

这将阻止click元素的任何子元素上.foobar事件的传播(冒泡),以便事件不会到达{{1用于触发事件处理程序的元素。

以下是演示:http://jsfiddle.net/bQQJP/

答案 4 :(得分:5)

我没有得到公认的工作答案,但这似乎可以解决问题,至少在香草JS中如此。

if(e.target !== e.currentTarget) return;

答案 5 :(得分:2)

$(".advanced ul li").live('click',function(e){
    if(e.target != this) return;
    //code
    // this code will execute only when you click to li and not to a child
})

答案 6 :(得分:1)

我遇到了同样的问题并提出了这个解决方案(基于其他答案)

 $( ".newsletter_background" ).click(function(e) {
    if (e.target == this) {
        $(".newsletter_background").hide();
    } 
});

基本上它说如果目标是div然后运行代码,否则什么都不做(不要隐藏它)

答案 7 :(得分:1)

我的情况与此类似,但是这种情况是您foobar数很少,而您只想关闭一次-每单击一次即可:

查找父案例

$(".foobar-close-button-class").on("click", function () {
    $(this).parents('.foobar').fadeOut( 100 );
    // 'this' - means that you finding some parent class from '.foobar-close-button-class'
    // '.parents' -means that you finding parent class with name '.foobar'
});

查找儿童案件

$(".foobar-close-button-class").on("click", function () {
    $(this).child('.foobar-close-button-child-class').fadeOut( 100 );
    // 'this' - means that you finding some child class from '.foobar-close-button-class'
    // '.child' -means that you finding child class with name '.foobar-close-button-child-class'
});

答案 8 :(得分:0)

您可以使用event.currentTarget。只会点击事件,而不会得到事件。

target = e => {
    console.log(e.currentTarget);
  };
<ul onClick={target} className="folder">
      <li>
        <p>
          <i className="fas fa-folder" />
        </p>
      </li>
    </ul>

答案 9 :(得分:0)

如果您不能使用pointer-events: none;并定位到现代浏览器,则可以使用composedPath来检测对对象的直接点击,如下所示:

element.addEventListener("click", function (ev) {
    if (ev.composedPath()[0] === this) {
        // your code here ...
    }
})

您可以在此处阅读有关composedPath的更多信息: https://developer.mozilla.org/en-US/docs/Web/API/Event/composedPath

答案 10 :(得分:0)

// if its li get value 
document.getElementById('li').addEventListener("click", function(e) {
                if (e.target == this) {
                    UodateNote(e.target.id);
                }
                })
                
                
                function UodateNote(e) {

    let nt_id = document.createElement("div");
    // append container to duc.
    document.body.appendChild(nt_id);
    nt_id.id = "hi";
    // get conatiner value . 
    nt_id.innerHTML = e;
    // body...
    console.log(e);

}
li{
 cursor: pointer;
    font-weight: bold;
  font-size: 20px;
    position: relative;
    width: 380px;
    height: 80px;
    background-color: silver;
    justify-content: center;
    align-items: center;
    text-align: center;
    margin-top: 0.5cm;
    border: 2px solid purple;
    border-radius: 12%;}
    
    p{
     cursor: text;
  font-size: 16px;
   font-weight: normal;
    display: block;
    max-width: 370px;
    max-height: 40px;
    overflow-x: hidden;}
<li id="li"><p>hi</p></li>