外観を指定してウインドウを開く
外観を指定してウインドウを開く
<html>
<head>
<script type="text/javascript" language="javascript" >
//外観を指定してウインドウを開く
function openHTML()
{
/*
toolbar
ツールバーの表示/非表示
location
URL入力欄の表示/非表示
directories
リンクツールバーの表示/非表示
status
ステータスバーの表示/非表示
menubar
メニューバーの表示/非表示
scrollbars
スクロールバーの表示/非表示
resizable
ウインドウサイズの変更
0:[固定]/1:[変更可]
width
ウインドウの幅
height
ウインドウの高さ
*/
window.open("test.html",
"",
"toolbar = 0, location = 0, directories = 0, status = 0, menubar = 0, scrollbars = 0, resizable = 0, width = 300, height = 300");
}
</script>
</head>
<body>
<form name=frm1 id=frm1 method="POST">
<input type = "button" value = "外観を指定してウインドウを開く" onClick = "openHTML();">
</form>
</body>
</html>
|
|