このスクリプトを使用して、特定のサイズのポップアップウィンドウを開き、中央に配置します。これは、Mac OS 10.9.5のSafariバージョン9.0.1(ただし、ウィンドウがフルサイズで開きます)を除き、意図したとおりに動作します。 これはMac上の他のすべてのブラウザで機能します。ポップアップウィンドウがSafariの幅/高さのディメンションを保持しない
指定されたウィンドウサイズがSafariで機能しない理由はありますか?
function PopupCenter(url, title, w, h) {
var dualScreenLeft = window.screenLeft != undefined ? window.screenLeft : screen.left;
var dualScreenTop = window.screenTop != undefined ? window.screenTop : screen.top;
var width = window.innerWidth ? window.innerWidth : document.documentElement.clientWidth ? document.documentElement.clientWidth : screen.width;
var height = window.innerHeight ? window.innerHeight : document.documentElement.clientHeight ? document.documentElement.clientHeight : screen.height;
var left = ((width/2) - (w/2)) + dualScreenLeft;
var top = ((height/2) - (h/2)) + dualScreenTop;
var newWindow = window.open(url, title, 'toolbar=no, location=no, directories=no, status=no, menubar=no,scrollbars=yes,resizable=yes, width=' + w + ', height=' + h + ', top=' + top + ', left=' + left);
// Puts focus on the newWindow
if (window.focus) {
newWindow.focus();
}
}
使用法:
<a href="#" onclick="PopupCenter('http://www.google.com','Window title','500','600'); return false;">Click</a>
ありがとうございますが、うまくいきませんでした。申し訳ありません。 – Meek
ああ、それはバマーです、本当に私はMacとサファリを持っていないため、さらにあなたを助けることはできません本当に窓で動作しません –