-1

小さなサイズの画面の中央に別の html 形式で php ファイルの出力を取得する方法。以下の部分を参照してください。機能していません。助けてください。

 <html>
 <head>

   <script type="text/javascript">
  //This function auto-fills fields the form 'qform' and auto submits.
  function datcal(subnm, chpno, qsnno) 
  {     
  document.qform.subnm1.value = subnm;
  document.qform.chpno1.value = chpno;
  document.qform.qnumber1.value = qsnno;
  document.getElementById("qform").submit();
}

  //calling the function with some data
  datcal('chem11','1','2');
  </script>

 </head>  
 <body>


  <form>
    <!-- This is the other part of form here.....-->
   </form>



     <!-- I want to get the out put of below form at center of screen separately -->
    <form id = "qform" name="qform" action="getques.php" style="visibility:hidden"     
      method="post" target="_blank">
   <input type="text" name="subnm1" ><br>
   <input type="text" name="chpno1" ><br>
   <input type="text" name="qnumber1" ><br>
   <input type="submit">
   </form> 




   </body>
    </html>

上記のコードは新しいウィンドウを開いていますが、そのウィンドウのサイズを全画面ではなく小さくしたいです。どうやってするか?

4

1 に答える 1