0

我有一个 MVC3 C# .Net Web 应用程序。我在 .js 文件中定义了一个弹出对话框。我试图让弹出窗口显示在屏幕中央。这样做的属性是什么。我有尝试的位置:'绝对'但不行。这是我的 jscript 代码的片段

LdapDialog = {
    /*
    * Base URL for the app. Must be set prior to calling show (ideally in _Layout.cshtml).
    */
    baseUrl: "",

    title: "Lookup:  Search by Last Name",
    width: 375,
    height: 600,
    loading: $('<img src="' + $.getUrl('Content/Images/loading.gif') + '" />'), 
    dialogContainer: $('<div></div>'),
    position: $('absolute'),
}

有任何想法吗?

4

0 回答 0