点击页面空白处取消某处的选中事件

$('body').on('click', function (e) {
        if (!$(e.target).closest('.select-project, .other').length) {
            $select.removeClass('active');
        }
    });

你可能感兴趣的:(点击页面空白处取消某处的选中事件)