MVC3 C#.NetWebアプリを持っています。.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'),
}
何か案は?