javascript之弹出窗口居中的代码
2017年02月06日
34 阅读
function openWin(u, w, h) { var l = (screen.width - w) / 2; var t = (screen.height - h) / 2; var s = "width=" + w + ", height=" + h + ", top=" + t + ", left=" + l; s += ", toolbar=no, scrollbars=no, menubar=no, location=no, resiz...