0
新しいポップアップウィンドウにフォーカスを置き、ポップアップウィンドウが閉じない限り、親ウィンドウをクリックすることを控えたい。私のコードは、リンクがクリックされるたびにポップアップウィンドウにフォーカスしています。私は開いているたびにポップアップウィンドウに集中しておきたい。閉じられるまでポップアップウィンドウに集中し続ける
以下は私のhtmlコードです。
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, 'scrollbars=yes, width=' + w + ', height=' + h + ', top=' + top + ', left=' + left);
// Puts focus on the newWindow
if (window.focus) {
newWindow.focus();
}
}
<a href="" class="btn btn-outline btn-info btn-xs" onClick="PopupCenter('transfer.php?id=<?php echo $putIn;?>','xtf','980','350');">Transfer</a>
こんにちは。それはうまくいかなかった。親ウィンドウをクリックしたときにフォーカスを保持しませんでした。 – Chris
@RecaPot私は答えを編集しました。確認してください。 –
こんにちは@shubham agrawal。リンクがクリックされるたびに新しいポップアップが開きます。 – Chris