子ウインドウから親ウインドウを指定する
子ウインドウから親ウインドウを指定する
<html>
<head>
<script type="text/javascript" language="javascript" >
//子ウインドウから親ウインドウを指定する
function openChildScreen()
{
window.open("sub.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 = "openChildScreen();">
</form>
</body>
</html>
<html>
<head>
<script type="text/javascript" language="javascript" >
//子ウインドウから親ウインドウを指定する
function dispHTML(intNo)
{
strHTML = "";
switch(intNo)
{
case 1:
strHTML = "test1.html";
break;
case 2:
strHTML = "test2.html";
break;
case 3:
strHTML = "test3.html";
break;
}
window.opener.location.href = strHTML;
}
</script>
</head>
<body>
<form name=frm1 id=frm1 method="POST">
<input type = "button" value = "その1" onClick = "dispHTML(1);"><br / >
<input type = "button" value = "その2" onClick = "dispHTML(2);"><br / >
<input type = "button" value = "その3" onClick = "dispHTML(3);"><br / >
</form>
</body>
</html>
|
|