ページを作成するとき、ユーザーはポップアップ ウィンドウのさまざまな解像度とさまざまな位置を必要とします。最初に画面の幅を取得し、その値を変数に渡して、onclick
< ;script>
function centerWindow(url,w,h){
l=(screen.width-w)/2
t=(screen. height-h)/2
window.open (url,'','left=' l ',top=' t ',width=' w ',height=' h)
}
< ;/script>
<入力タイプ=ボタン onclick="centerWindow('about:blank',200,200)"> ----------- ----------------------------------
--------------------- ----------------------------
;
このコードは、異なる画面に応じて異なるページを表示します
このパラメータを渡す方法は次のとおりです
code