0

我在网站上发现了许多类似的问题,但没有什么能接近我的救援。我动态地将一个 div 附加到一个元素,在这个 div 中我提到了不透明样式属性,如下所示。

$('#cell').append('<div id="el_loading" 
style="-ms-filter:\"progid:DXImageTransform.Microsoft.Alpha(Opacity=50)\";
filter: alpha(opacity=50);
opacity:0.5;
background-color: #fbfbfb;
height: 100%;
width:100%;
position:relative
;z-index:9999;">
<div style="top: 74.2px; width: 91px;">
<img  src="/myimage/loading.gif" title="Please Wait..." />
<span>
<b>Please wait ...</b>
</span>
</div>
</div>');

这样做是为了在将 ajax 请求发送到服务器时模糊页面。这段代码是在 javascript 区域中编写的,因此我使用的是内联样式。以上样式在 IE10 中可以正常工作,但在 IE8 中不行。

4

3 回答 3

1

请将您的 css 脚本移动到您自己的 css 文件中。

例如:

  • 创建一个名为 style.css 的文件,然后粘贴以下代码:
#el_loading{
    /* IE 8 */
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=50)";

    /* IE 5-7 */
    过滤器:阿尔法(不透明度= 50);

    /* 网景 */
    -moz 不透明度:0.5;

    /* Safari 1.x */
    -khtml-不透明度:0.5;

    /* 好的浏览器 */
    不透明度:0.5;

    背景颜色:#fbfbfb;
    高度:100%;
    宽度:100%;
    位置:相对
    ;z-index:9999;
}

你的脚本是这样的:

$('#cell').append('<div id="el_loading">
    <img  src="/myimage/loading.gif" title="Please Wait..." />
    <span>
        <b>Please wait ...</b>
    </span>
    </div>
</div>');

希望有帮助。

于 2014-08-12T09:05:42.660 回答
0

filter在样式标签内使用单引号。

 $('#cell').append("<div id='el_loading' 
 style='-ms-filter:\progid:DXImageTransform.Microsoft.Alpha(Opacity=50)\; /* double quote will end your style here only. So use single quote. */
 filter: alpha(opacity=50);
 opacity:0.5;
 background-color: #fbfbfb;
 height: 100%;
 width:100%;
position:relative;z-index:9999;'>
<div style='top: 74.2px; width: 91px;'>
<img  src='/myimage/loading.gif' title='Please Wait...' />
<span>
<b>Please wait ...</b>
</span>
</div>
</div>");
于 2014-08-12T07:13:18.330 回答
0

尝试添加以下内容

 -moz-opacity: 0.50;
    opacity:.50;
    filter: alpha(opacity=50);

所以你的代码会变成

$('#cell').append('<div id="el_loading" 
style="-ms-filter:\"progid:DXImageTransform.Microsoft.Alpha(Opacity=50)\";
filter: alpha(opacity=50);
-moz-opacity: 0.50;
opacity:.50;
filter: alpha(opacity=50);
background-color: #fbfbfb;
height: 100%;
width:100%;
position:relative
;z-index:9999;">
<div style="top: 74.2px; width: 91px;">
<img  src="/myimage/loading.gif" title="Please Wait..." />
<span>
<b>Please wait ...</b>
</span>
</div>
</div>');
于 2014-08-12T07:14:08.607 回答