📌  相关文章
📜  当用户在其外部单击时隐藏 div - Javascript 代码示例

📅  最后修改于: 2022-03-11 15:01:33.579000             🧑  作者: Mango

代码示例1
$(document).mouseup(function(e){
    var container = $("YOUR CONTAINER SELECTOR");
    // if the target of the click isn't the container nor a descendant of the container
    if (!container.is(e.target) && container.has(e.target).length === 0){
        container.hide();
    }
});