<script type="text/javascript"> var newWindow = null; </script> <a href="javascript:void(newWindow = window.open('sub.htm','sub'))" >新しいウインドウを開く</a> <input type='button' value="新しいウインドウを開く" onclick='newWindow = window.open("sub.htm","sub")' >
<script type="text/javascript"> var newWindow = null; </script> <a href="sub.htm" target="sub">新しいウインドウを開く</a> <form action="sub.htm" method="get" target="sub" > <input type="submit" value="新しいウインドウを開く"> </form> <form name="frm" action="sub.htm" method="get" target="sub" > </form> <input type='button' value="新しいウインドウを開く" onclick='document.frm.submit();'>
<script type="text/javascript"> if ( window.opener ) { try { window.opener.newWindow = window; } catch(e){} } else { try { window.parent.newWindow = window; } catch(e){ alert("単独ウインドウです") } } </script>