我想制作一个主体重叠透明背景的 jquery 警报框,但它不起作用,有人可以帮助我吗?
$("body").css({
'height' : '100%',
'height' : '100%',
});
$("#alert").css({
'height' : '100%',
'height' : '100%',
'left' : '0px',
'right' : '0px',
'top' : '0px',
'bottom' : '0px',
'z-index' : '98',
'background-color' : "rgba(0,0,0,1)",
});
$("#alertBox").css({
'border-color' : settings.bordercolor,
'border-width' : settings.borderwidth,
'border-style' : settings.borderstyle,
'border-radius' : settings.borderradius,
'background-color' : settings.backgroundcolor,
'color' : settings.color,
'padding' : settings.padding,
'width' : '500px',
'position' : 'absolute',
'left' : '30%',
'right' : '30%',
'top' : settings.top,
'text-align' : settings.align,
'z-index' : '98',
});