1

我有一个 css 问题,我相信当我在 IE 10 和 FireFox 19.0.2 中使用 jquery UI 对话框时,页面中间会出现一个白色矩形。希望有人能指出原因。下面是我正在使用的页面代码和 jquery,它是基本代码。

编辑:我发现它只发生在由于覆盖而在对话框对象上设置了 modal:true 时。

编辑:我解决了这个问题。将在 8 小时内更新答案。UI CSS 1.10.2 版修复了这个问题。估计我会升级。

如果有人想查看,JSFiddle 会对此进行测试http://jsfiddle.net/9dpsA/
要解决此问题,请将 UI CSS 的外部资源更改为 1.10.2 版本而不是 1.10.1。

<!DOCTYPE html>

  <html xmlns="http://www.w3.org/1999/xhtml">
  <head runat="server">
   <link href="../css/jquerycss/jquery-ui-1.10.1.custom.css" rel="stylesheet" />
    <script src="../JavaScript/jquery-1.9.1.min.js"></script>
    <script src="../JavaScript/jquery-ui-1.10.1.custom.min.js"></script>
    <script src="../JavaScript/jquery.blockUI.js"></script>
    <title>Site</title>

    <script>

        $(document).ready(function () {
            $('#dialog-confirm').hide();

            $("#btnArchive").click(function () {
                $('#dialog-confirm').dialog({
                    resizable: false,
                    height: "auto",
                    modal: true,
                    buttons: {
                        "Archive": function () {
                            $(this).dialog("close");
                        },
                        Cancel: function () {
                            $(this).dialog("close");
                        }
                    }
                });
            });



        });

       </script>
</head>
<body>
    <form id="form1" runat="server">

    <div id="page" style="text-align:center;">

        <div id="header">
            <h2>Site</h2>
            <asp:Button ID="btnMnu" runat="server" Text="Manage Tasks" PostBackUrl="someurl" />
            <input id="btnArchive" type="button" value="Archive Selected" />
            <asp:Button ID="btnDelete" runat="server" Text="Delete Selected" />
        </div>



        <div id="dialog-confirm" title="Archive the Selected Tasks?">
            <p>
                <span class="ui-icon ui-icon-alert" style="float: left; margin: 0 7px 20px 0;"></span>
                <span>Archiving will result in the deletion of the task. Are you sure you want to archive the task(s)?</span>
            </p>
        </div>

        <div id="footer">

        </div>
    </div>
    </form>
</body>
</html>
4

2 回答 2

1

用这个替换你的 CSS:

<link href="http://code.jquery.com/ui/1.10.2/themes/smoothness/jquery-ui.css" rel="stylesheet"/>

在此处查看演示

http://jsfiddle.net/9dpsA/1/

于 2013-04-04T17:16:51.997 回答
1

UI CSS 1.10.2 版修复了这个问题。估计我会升级。

要解决此问题,请将 UI CSS 的外部资源更改为 1.10.2 版本而不是 1.10.1。

于 2013-04-05T15:51:04.517 回答