“jQuery щелкнуть снаружи” Ответ

JavaScript обнаруживает щелчок вне элемента

var ignoreClickOnMeElement = document.getElementById('someElementID');

document.addEventListener('click', function(event) {
    var isClickInsideElement = ignoreClickOnMeElement.contains(event.target);
    if (!isClickInsideElement) {
        //Do something click is outside specified element
    }
});
Grepper

Нажмите внешнюю коробку jquery

$(document).click(function(){
 $("#try").hide(); 
});

$("#try").click(function(e){
  e.stopPropagation(); 
});
A D Bhowmick

Нажмите внешний элемент jQuery

    $(document).click(function (event) {
        var $target = $(event.target);
        if (!$target.closest('.modal-dialog').length && $('.modal-dialog').is(":visible")) {
            console.log("clicked outside the element")
        }
    });
Filthy Flatworm

jQuery щелкнуть снаружи

	$(document).click(function (event) {
        var target = $(event.target);
        if (!target.closest('.modal-dialog').length && $('.modal-dialog').is(':visible')) {
            console.log('clicked outside the element')
        }
    });
MaZzIMo24

Нажмите внешнюю коробку jquery

<body>
  <p id="try">Lorem ipsum is placeholder text commonly used in the graphic, print, and publishing industries for previewing layouts and visual mockups.

</p>
</body>
A D Bhowmick

Ответы похожие на “jQuery щелкнуть снаружи”

Вопросы похожие на “jQuery щелкнуть снаружи”

Больше похожих ответов на “jQuery щелкнуть снаружи” по JavaScript

Смотреть популярные ответы по языку

Смотреть другие языки программирования