Finally, I found a solution for this work.
1) You need to put in the HTML file below the code in the domain where the parent page is located.
pageReload.html
<!DOCTYPE html>
<html>
<head>
<script type="text/javascript" src="http://code.jquery.com/jquery-1.11.3.js"></script>
<script type="text/javascript">
function reload() {
parent.parent.window.opener.location.reload();
};
</script>
</head>
<body onload="reload()">
</body>
</html>
2) HTML- HTML-. .
window.location = "http://www.yourparentdomain.com/pageReload.html";
.