其他分享
首页 > 其他分享> > 使用window.open 实现弹框和居中对齐

使用window.open 实现弹框和居中对齐

作者:互联网

    // 打开页面方法
    window.open(url, '_blank', centerStyle('600', '400')+',toolbar=no,menubar=no,resizeable=no,location=no,status=no,scrollbars=yes');

    // 子方法
    var centerStyle = function (height, width) {
        var iTop = (window.screen.height - 30 - height) / 2;       //获得窗口的垂直位置;
        var iLeft = (window.screen.width - 10 - width) / 2;        //获得窗口的水平位置;
        return 'height=' + height + ',width=' + width + ',top=' + iTop + ',left=' + iLeft
    };

标签:no,iTop,height,width,window,var,弹框,open
来源: https://www.cnblogs.com/bradcai/p/11654701.html