设置窗口弹出窗口坐标

Set Window Popup coordinates

本文关键字:窗口 坐标 设置      更新时间:2023-09-26

我正在使用这样的JQuery UI对话框;

 $(function () {
        var dlg = $("#dialog").dialog({
            draggable: true,
            resizable: false,
            width: 950,
            height: 480,
            autoOpen: false,
            modal: true,
            minHeight: 30,
            minwidth: 30,
            title: 'test'
        });
    });

窗:

    function PopupUrl(url, name, width, height) {
        var features = "location=1, status=1, scrollbars=1, width=" + width + ", height=" + height + '"';
        window.open(url, name, features);
    }

对话框已打开页面的中心,但弹出窗口显示不同的坐标。我想重叠。怎么做?

只需将计算的顶部和左侧添加到功能列表中,弹出窗口将位于屏幕中央:

function PopupUrl(url, name, width, height) {
    var top = parseInt((screen.availHeight / 2) - (height / 2));
    var left = parseInt((screen.availWidth / 2) - (width / 2));
    var features = "location=1, status=1, scrollbars=1, width=" + width + ", height=" + height + ", top=" + top + ", left=" + left;
    window.open(url, name, features);
}