子ウインドのデータを取得2

更新日 2008-03-09 (日) 17:11:29

子ウインドで入力した値の取得サンプル

window.showModalDialogを使用するときはGoogle Map APIが子ウインドとして利用するときヘッダーの関係で子ウインドでMAPが表示しないのでwindow.openを使用する方法を示す

親ウインド

<body>

データ  <BR>
緯度:<INPUT TYPE="TEXT" SIZE="40" id="lat" name="map_latitude"><br>
経度:<INPUT TYPE="TEXT" SIZE="40" id="lng" name="map_longitude"><br>

<script type="text/JavaScript">
<!--
function winOpen(theURL,winName,features) { //v2.0
 window.open(theURL,winName,features);
}
//-->
</script>
<!--ボタン表示 -->
 <INPUT TYPE="button" VALUE="入力" ONCLICK="winOpen ('input3.php','newWindow','scrollbars=yes width=850,height=750' )">
<BR>
<!--リンク表示 -->
<p><a href="#" onclick="winOpen('input3.php','newWindow','scrollbars=yes width=800,height=480' )">新しいウインドウを開く!</a></p>

トップ   新規 一覧 検索 最終更新   ヘルプ   最終更新のRSS