web-dev-qa-db-ja.com

画面中央にwindow.open

私はwindow.openを使用して、次のようなポップアップウィンドウを開きます。

<a href="http://path/to/url" onclick="window.open(this.href, 'sharegplus', 'height=485,width=700'); return false;" target="_blank">

これを画面の中央に配置したいのですが、<script> inline code </script>を使用せず、onclick=""内に必要なものを入力するだけです。これはできますか?

14
manc

編集する

これは悪い答えです。より良い答えはここにあります: マルチモニター/デュアルモニターシステムのwindow.open()-ウィンドウはどこにポップアップしますか?

しかし、この回答をいつ更新するかを決定する間、このフィドルはデュアルモニターのセットアップを説明します。 http://jsfiddle.net/w665x/138/

元の回答

これはあなたのために働くかもしれません。完全にクロスブラウザであることに自信はありませんが、近いです。

<html>
<head>
<script type="text/javascript">
function goclicky(meh)
{
    var x = screen.width/2 - 700/2;
    var y = screen.height/2 - 450/2;
    window.open(meh.href, 'sharegplus','height=485,width=700,left='+x+',top='+y);
}
</script>
</head>
<body>
<a href="http://path/to/url" onclick="goclicky(this); return false;" target="_blank">blah</a>
</body>
</html>

フィドル!

28
Joseph Marikle

また、あなたは試すことができます:

$('a.popup-window').on('click', function(){
    var w = 880, h = 600,
        left = Number((screen.width/2)-(w/2)), tops = Number((screen.height/2)-(h/2)),
        popupWindow = window.open(this.href, '', 'toolbar=no, location=no, directories=no, status=no, menubar=no, scrollbars=no, resizable=1, copyhistory=no, width='+w+', height='+h+', top='+tops+', left='+left);
    popupWindow.focus(); return false;
});

そして電話:

<a href="https://google.com/" class="popup-window">Open in new window</a>
1
Tarampampam

このコードはjAplusスクリプトを使用します。 JavaScriptコードを記述せずにこれを行うことができます。 ( http://japlus.simplit.it

<head>
   <script src="/path/to/jquery.js" type="text/javascript" charset="utf-8"></script>
   <script src="/path/to/jquery.Aplus.js" type="text/javascript" charset="utf-8"></script>
</head>
<body>
    <a href="http://path/to/url" class="win win-center">
</body>
</html>
0
erik

このコードは完全に機能します:

//Code Starts
$(document).ready(function() {
   $('#Popup').click(function() {
     var NWin = window.open($(this).prop('href'), '', 'height=800,width=800');
     if (window.focus) 
     {
       NWin.focus();
     }
     return false;
    });
});​
//Code Ends


<a href="http://www.google.com/" id="Popup">Open in Popup window</a>
0
S. S.