bootstrap使用模态框当弹出两层的时候,遮罩层会把原有的透明度减少。

2024-12-21 23:33:47
推荐回答(1个)
回答1:

每个模态窗会生成一个class为"modal-backdrop"的遮罩。在模态窗第一次显示时为这个模态窗的
遮罩层
设置一个id。例如:
$modal.modal({show:
true,backdrop:
'static'});
$('.modal-backdrop').each(function()
{
$(this).attr('id',
'id_'
+
Math.random());
});