<script>
function testwindow(){
window.open("http://www.yahoo.com/","testwin","width=500,height=500");
}
</script>
<form>
<input type=button onClick="testwindow()" value="ウィンドウを開く">
</form>
|
<script>
function testwindow(){
testwin = window.open("","testwin","width=320,height=200")
testwin.document.open();
testwin.document.write("<BODY bgcolor='#db7093'>>CENTER>")
testwin.document.write("<FONT color='#ffdab9'><H2>★JavaScriptMarket★</H2></FONT>")
testwin.document.write("<HR color=#a9a9a9><FONT color='#ffdab9'><H4>いらっしゃいませ!")
testwin.document.write("<BR>これは!というものがありましたら")
testwin.document.write("<BR>ご自由にお持ち下さい。</H4></FONT>")
testwin.document.write("<a href='javascript:window.close()'>閉じる</a></CENTER></BODY>")}
testwin.document.close();
}
</script>
<form>
<input type=button onClick="testwindow()" value="ウィンドウを開く">
</form>
|