-----030-Window-Blur.html-----
1 <!DOCTYPE html> 2 <html> 3 <head> 4 <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> 5 <title>标题</title> 6 </head> 7 <body> 8 <script type="text/javascript"> 9 function openNew() 10 { 11 newHtml = "<h4>打开新窗体</h4><center><input type='button', value='关闭'οnclick='window.close();'/></center><center><input type='button', value='失去焦点'οnclick='window.opener=null;window.blur();'/></center>" 12 newWin = window.open("", "新窗口", "height=200, width=200, toolbar=no, menubar=no, status=yes, location=no, top=200, left=200"); 13 newWin.document.write(newHtml); 14 t = 0; 15 } 16 17 </script> 18 <input type="button" value="New" onclick="openNew()"/> 19 </body> 20 </html>