0

我一直有一个对话框的定位问题。

我正在使用经典的 ASP 或 VBScript 以及 jquery-ui-1.10.2 和 jquery-1.9.1.js

我的对话框工作得很好,除了定位。无论我更改什么,它似乎都卡在页面的左上角。我添加了一个位置,设置 center = true,尝试修改样式和其他一些小调整,但似乎没有任何效果。我在这里不知所措,想知道是否有其他人遇到过类似的问题,谢谢。

当我下载 JQuery UI 时,我确保检查了所有内容。

HTML:

<table cellpadding="0" cellspacing="0">
<td id="Comments" height="39" colspan="1">
</td>
</table>

<div id="dialog-message" title="Important information">
    <p style="text-align:center;"> Message regarding this content </p>
    <br/>
    <div style="margin-left: 23px;">
    <p>Subject: <input type="text" id="subject" />
    <br/> <br/>
    Body: <input type="text" id="question" />
    </div>
</div>

查询:

    $(document).ready(function() {
        $("#dialog-message").hide()
    } 
    );
$("#Comments").click(function() {
    $("#dialog-message").dialog({
        modal: true,
        width: 400,
        height: 500,
        }
       }
    });
});
4

1 回答 1

1

清理代码解决了问题:

$(document).ready(function() {
    $("#dialog-message").hide();
    $("#Comments").click(function() {
            $("#dialog-message").dialog({
                modal: true,
                width: 400,
                height: 500
            });
    });
});

这是一个工作的jsfiddle

于 2013-03-21T16:15:47.397 回答