jquery blockui 与 IE8 一起工作很奇怪

发布于 2024-10-24 07:19:25 字数 269 浏览 1 评论 0原文

我有一个 jqgrid,当我双击一行时,我会在加载对话框时调用 jquery blockui。在每个浏览器中,blockUI 加载消息都完美地显示在 jqgrid 的中间,但在 IE8 中,它一直显示在网格的底部左侧,并且不重叠:

在此处输入图像描述

如果我将 ie8 置于兼容模式,它似乎工作正常。

jquery blockui 可以在 IE8 中正确居中加载消息吗?

i have a jqgrid and when i double click a row, i call jquery blockui as i load a dialogue. In every browser the blockUI loading message shows up in the middle of the jqgrid perfectly but in IE8 it shows at the bottom of the grid all the way to the left and not overlaying:

enter image description here

If i put ie8 into compatibility mode it seems to work fine.

Is there any reason why jquery blockui can center the loading message properly in IE8 ?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

花辞树 2024-10-31 07:19:25

我也没见过这个问题。
我倾向于将网格包装在 DIV 中并在此基础上构建 BlockUI:

<div id="PermissionsContainer">
    <table id="PermissionsGrid"></table>
    <div id="PermissionsPager"></div>    
</div>   

以及

$("#PermissionsContainer").block({ message: '... saving ...' });

I haven't seen that problem either.
I tend to wrap my grid in a DIV and build the BlockUI on that:

<div id="PermissionsContainer">
    <table id="PermissionsGrid"></table>
    <div id="PermissionsPager"></div>    
</div>   

and

$("#PermissionsContainer").block({ message: '... saving ...' });
花之痕靓丽 2024-10-31 07:19:25

尝试将 放在页面的开头。这对我来说是工作..

Try to put <!doctype html> at the beginning of the page. It's work for me..

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文