📅  最后修改于: 2022-03-11 14:59:14.780000             🧑  作者: Mango
Launch modal
$('.modal').on('shown.bs.modal', function (e) {
$('.modal.show').each(function (index) {
$(this).css('z-index', 1101 + index*2);
});
$('.modal-backdrop').each(function (index) {
$(this).css('z-index', 1101 + index*2-1);
});
});