标签:style blog http color java 使用 os io
1 <html> 2 <script src="./assist.js" type="text/javascript"></script> 3 <script type="text/javascript"> 4 myWindow=window.open(‘‘,‘‘,‘width=200,height=100‘) 5 // 6 7 8 9 10 function checkWindowClosed() 11 { 12 if(myWindow.closed) 13 { 14 writeLine("closed"); 15 } 16 else 17 { 18 writeLine("not closed"); 19 } 20 } 21 </script> 22 <body> 23 <iframe name="iframe1"></iframe> 24 <input type="button" id="my" value="Has ‘myWindow‘ been closed?" onclick="checkWindowClosed()"> 25 </body> 26 </html>
javascript篇:Browser对象,布布扣,bubuko.com
标签:style blog http color java 使用 os io
原文地址:http://www.cnblogs.com/Phoemamba/p/3845079.html