1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 |
<html> <head> <title>サブウインドウ</title>
<script language="JavaScript"> <!--
function showMsg(url){ window1 = window.open(url,"window1","resizable=1,width=300,height=200"); }
//--> </script>
</head> <body>
<br>下のボタンクリックでサブウィンドウが開きます。<br><br> <form> <input type="button" value="サブウィンドウのタイトル" onClick="showMsg('サブウィンドウのファイル名')"> </form>
</body> </html>
|