Предотвратить клик от события щелчка родительского увольнения - PullRequest
12 голосов
/ 03 августа 2011

У меня есть селектор, который связывает событие нажатия, которое удаляет всплывающее окно.Однако я хочу, чтобы селектор обрабатывал щелчок, а не дочерние элементы селектора, чтобы иметь возможность вызывать событие щелчка.

Мой код:

<div id="popup">
  <div class="popup-content">Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.</div>
</div>

При нажатии .popup-content, это вызовет событие click, когда я не хочу, чтобы это делали дети #popup.

Код jQuery:

$('#popup').bind('click', function()
{
    $(this).remove();
});

Ответы [ 4 ]

17 голосов
/ 05 июня 2012

В вашем обработчике событий для #popup проверьте, если e.target == this.то есть:

$('#popup').bind('click', function(e) {
    if(e.target == this) $(this).remove();
});

Это гораздо проще, чем привязать дополнительные обработчики кликов ко всем дочерним элементам.

14 голосов
/ 03 августа 2011

try:

e.stopPropagation();
return false; 

в вашем обработчике событий

0 голосов
/ 20 сентября 2013
{if(e.target == this ){ return;}});
0 голосов
/ 25 сентября 2011
$('.popup-content').bind('click', function(e)
{
    e.stopPropagation();
});

или

$('.popup-content').bind('click', function(e)
{
    return false;
});

В вашем случае - это то же самое, но иногда вы не можете сделать это без e.stopPropagation ().Например:

$('.popup-content a').bind('click', function(e)
{
    e.stopPropagation();
    return confirm("Are you sure?");
});
...