다른 도메인을 가지고있는 두 페이지가 있습니다.도메인 간 오프너의 URL을 알아내는 방법
아이 페이지에서 따개 페이지의 URL을 알고 싶습니다. 그러나 나는 오프너를 통해 그것을 할 수 없습니다. 위치.
예 :
Page1.html :
<html>
<head></head>
<body>
<script>
var handle = window.open("somedomain/Page2.html");
</script>
</body>
</html>
Page2.html
<html>
<head></head>
<body>
<script>
alert(opener.location) //this is not working.
</script>
</body>
</html>
브라우저를
window.opener.location
을 전달하는 변하기 쉬운. – Quentin