打开一个新窗口

版权声明:本文为博主原创文章,未经博主允许不得转载。 https://blog.csdn.net/zhangshab/article/details/88558769

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);

}

猜你喜欢

转载自blog.csdn.net/zhangshab/article/details/88558769