再窗口中央打开新窗口 js代码

url="http://www.idyan.com";
function openWin(url,w,h)
{
//width 返回屏幕的宽度(像素数)。
//height 返回屏幕的高度。
//availWidth 返回屏幕的可用宽度(除去了一些不自动隐藏的类似任务栏的东西所占用的宽度)。
//availHeight 返回屏幕的可用高度。
// var top=(screen.height-h)/2;
// var left=(screen.width-w)/2;
var top=(screen.availHeight-h)/2;
var left=(screen.availWidth-w)/2;

var win=window.open(url, "popupwin", "height="+h+", width="+w+
", top="+top+", left="+left+", toolbar=0, menubar=0, scrollbars=1, resizable=0,location=0, status=1");
win.focus();
}
openWin(url,280,200);

你可能感兴趣的:(js)