JavaScript 開啟視窗最大化 Part2

修改了上一次的 win_maximization()
加入了例外狀況的判定以及開啟後會把子視窗放在前面的CODE

function win_maximization()
{
window.moveTo(0,0);

if (document.all)
{
top.window.resizeTo(screen.availWidth,screen.availHeight);
}

else if (document.layers||document.getElementById)
{
if (top.window.outerHeight<screen.availHeight||top.window.outerWidth<screen.availWidth)
{
top.window.outerHeight = screen.availHeight;
top.window.outerWidth = screen.availWidth;
}
}
// 得到焦點
self.focus();
}


參考資料
如何調整瀏覽器視窗至全螢幕大小,在 Internet Explorer 中載入時

留言

熱門文章