如何在Internet Explorer 8中创建模态窗口,使整个屏幕变灰并显示ajax微调器?

<div style="display: none; position: fixed; z-index: 1000; top: 0; left: 0; width: 100%; height: 100%; background-color: rgba(0,0,0, 0.4)">


跟随div可以很好地处理Edge,但不会使IE8中的屏幕变灰,而是让用户与页面进行交互。

如何使它在IE中工作?

最佳答案

rgba和background-color似乎在IE 8中不起作用caniuse_rgba caniuse_background-color

您可以使用背景进行后备

background: #EEE /* The Fallback */
background: rgba(0,0,0, 0.4)

关于javascript - 在Internet Explorer 8中创建HTML模式窗口,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/38785442/

10-11 13:59