ブラウザでパソコンの画面の画像数を取得して、新しいページを開きます.
593 ワード
function xxxx(){
var windowHeight=window.screen.height-120;
var windowWeight=window.screen.width-100;
var windowLeft=(window.screen.width-windowWeight)/2;
var openlocation="xxx/xxxx.jsp?";
//window.open("xxx/xxxx.jsp?");
window.open(openlocation,"_blank","top=20,left="+windowLeft+",width="+windowWeight+", height="+windowHeight+", toolbar=no,"+
"menubar=no,scrollbars=no, resizable=no,location=no, status=no");
}
開いている独立した新しいページを中央に表示します.