📅  最后修改于: 2022-03-11 15:02:08             🧑  作者: Mango
// If an element inside a dropdown menu has the "keep-open" class,
// disable closing the dropdown menu.
$(document).on('click.bs.dropdown.data-api', '.keep-open', function (e) {
e.stopPropagation();
});