2013-08-12 6 views
1

하위 페이지를 닫은 후에 상위 페이지를 자동으로 새로 고칠 수 없습니다. 나는이 질문이 전에 물었다는 것을 알고있다. 그러나 나는 그들을 사용하여 나의 문제를 해결할 수 없었다. 다음은 부모 페이지 (parent.php)입니다.하위 페이지를 닫은 후 페이지를 다시로드 할 수 없습니다.

<html> 
<head> 
<script type="text/javascript"> 

var popupWindow=null; 

function child_open() 
{ 

popupWindow =window.open('child_page.html',"_blank","directories=no, status=no, menubar=no, scrollbars=yes, resizable=no,width=600, height=280,top=200,left=200"); 

} 
function parent_disable() { 
if(popupWindow && !popupWindow.closed) 
popupWindow.focus(); 
} 
</script> 

</head> 
<body onFocus="parent_disable();" onclick="parent_disable();"> 
    <a href="javascript:child_open()">Click me</a> 
</body>  

</html> 

는이 내 child_page.html

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> 
<html xmlns="http://www.w3.org/1999/xhtml"> 
<head> 
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> 
<title>Untitled Document</title> 
</head> 

<h1>child page</h1> 

This is the child page 
<body> 

<script> 
    window.onunload = refreshParent; 
    function refreshParent() { 
     window.opener.location.reload(); 
    } 
</script> 
</body> 
</html> 

답변

0

이 모질라와 함께 완벽하게 작동 ,.

0

입니다 스크립트 :

function RefreshParentPage() { 
       window.self.close(); 
       window.opener.location = 'your parent page path'; 
       top.location.reload(); 
      } 

HTML :

<a onClick="RefreshParentPage()" href="#">Close Child Page</a> 
관련 문제