1.js コードをコピーします コードは次のとおりです: <br><br>function openwindow(url,name,iWidth,iHeight) <br>{ <br>// url Web ページにリダイレクトする URL <br>// Web ページの名前。空でも構いません。 <br>//iWidth ポップアップ ウィンドウの幅 <br>// iHeight ポップアップ ウィンドウの高さ <br>//window.screen.height画面の高さを取得します。 window.screen.width は画面の幅を取得します。 <br>var iTop = (window.screen.height-30-iHeight)/2; // ウィンドウの垂直位置を取得します。 >var iLeft = (window.screen.width-10-iWidth)//ウィンドウの水平位置を取得します。 <br>window.open(url,name,'height=' iHeight ',,innerHeight=' iHeight ',width=' iWidth ',innerWidth=' iWidth ',top=' iTop ',left= ' iLeft ',toolbar=no,menubar=no,scrollbars=auto,resizeable=no,location=no,status=no '); <br>} <br><br> 2. メソッドコードをコピーします コードは次のとおりです:a に移動