window.open 打開窗口居中顯示

 var iWidth = 650;  //新打開窗口的寬
 var iHeight = 450; //新打開窗口的高
 var vTop = (window.screen.availHeight - 30 - iHeight) / 2;  
 var vLeft = (window.screen.availWidth - 10 - iWidth) / 2;
 window.open(window.location.origin + '/api/common/attachment/forwardFile?fileId=' + fileId, '_blank', 'height=' + iHeight + ',innerHeight=' + iHeight + ', width = ' + iWidth + ', innerWidth = ' + iWidth + ', top = ' + iTop + ', left = ' + iLeft + ', status = no, toolbar = no, menubar = no, location = no, resizable = no, scrollbars = 0, titlebar = no ');

 

發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章