JS彈出新窗口,關閉新窗口時,刷新父窗口 JS代碼實現刷新網頁

這裏有兩個文件,主要要實現的是點父窗口裏的彈出新窗口(詳細請參考 JS控制窗口常用代碼),將彈出新窗口,在新窗口裏面有兩個方法,一個是刷新本面,另一個是關閉本頁,同時要刷新父窗口,其中f.htm爲父頁,z.htm爲子頁,代碼如下(由於f.htm頁內容不多,可能會刷新過快而沒看到效果,你可以適當增加內容以便查看效果):
f.htm程序代碼

  1. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">  
  2. <html xmlns="http://www.w3.org/1999/xhtml">  
  3. <head>  
  4. <meta http-equiv="Content-Type" content="text/html; charset=gb2312" />  
  5. <title>父窗口</title>  
  6. </head>  
  7.   
  8. <body>  
  9. <span οnclick="window.open('z.htm')" style="cursor:hand;">打開子窗口</span>  
  10. </body>  
  11. </html>  

z.htm 程序代碼

  1. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">  
  2. <html xmlns="http://www.w3.org/1999/xhtml">  
  3. <head>  
  4. <meta http-equiv="Content-Type" content="text/html; charset=gb2312" />  
  5. <title>子窗口</title>  
  6. <script language="javascript">  
  7. function closethewindow()   
  8. {   
  9. var url="f.htm";//要刷新的窗口   
  10. opener.document.location=url;   
  11. window.close();   
  12. }   
  13. </script>  
  14. </head>  
  15.   
  16. <body>  
  17. <span οnclick="closethewindow();" style="cursor:hand;">關閉子窗口,刷新父窗口</span><br />  
  18. <span οnclick="javascript:window.location.reload();" style="cursor:hand;">刷新此窗口</span>  
  19. </body>  
  20. </html>  

 

發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章