windowOpen(url, '结算确认书', screen.availWidth, screen.availHeight);
function windowOpen(url, name, width, height) {
var top = parseInt((window.screen.height - height) / 2, 10), left = parseInt((window.screen.width - width) / 2, 10),
options = "location=no,menubar=no,toolbar=no,dependent=yes,minimizable=no,modal=yes,alwaysRaised=yes," +
"resizable=yes,scrollbars=yes," + "width=" + width + ",height=" + height + ",top=" + top + ",left=" + left;
window.open(url, name, options);
}
本文介绍了一种使用JavaScript实现的窗口居中弹窗的方法,通过计算屏幕可用宽度和高度来确定弹窗的位置,确保其在屏幕中央显示,提供了一个实用的windowOpen函数示例。
2613

被折叠的 条评论
为什么被折叠?



