设置弹出的位置

时间:2011-11-29 04:49:56

标签: jquery

我是jquery的新手。 我在我的asp.net应用程序中加载弹出窗口。 我想设置弹出的位置。 现在它在中心位置开放。 请让我知道如何在顶部显示弹出窗口。 我可以提一下顶部位置的像素吗? 请让我知道怎么做。

这是我的代码

var popup = 0; $("#modalRightCenterContent").dialog({ minHeight: 48, minWidth: 470, resizable: false, modal: true, autoOpen: false, title: "Add Widgets" })

2 个答案:

答案 0 :(得分:1)

您也可以设置位置:

$( ".selector" ).dialog({ position: 'top' });

参考:

http://jqueryui.com/demos/dialog/#option-position

答案 1 :(得分:0)

尝试添加以下代码

 $('#modalRightCenterContent').css({ top: '1%', left: '50%', margin: '-' + (($('#modalRightCenterContent').height() ) - ($(window).scrollTop())) + 'px 0 0 -' + (($('#modalRightCenterContent').width() / 2)) + 'px' });

添加此行,您将获得对话框的顶部中心