別のドメインにあるIframeから親ドメインのURLにアクセスする必要があります。
たとえば、「example.com」は、「google.com」などの別の親ドメインからのiframeを持つ私のウェブサイトです。ここでは、example.comから親ドメインのURLにアクセスする必要があります。つまり、「example.com」ドメインで「google.com」というURLを取得する必要があります。さらに、親ドメインをハードコーディングすることはできません。
私が試したのは、次のコードを使用することでした:
window.parent.location.href()
ただし、これにより、アクセス拒否エラーが発生します。これを達成するためにこれを適切に実装するにはどうすればよいですか?
リファラーを確認してみてください。iframeの場合、リファラーは親サイトになります。
次のようにできます:
var href = document.referrer;
これらの質問/回答をご覧ください。彼らはあなたの問題に関するいくつかの情報を与えることができます:
短くするために、セキュリティ上の理由から、別のドメインからiframeにアクセスすることはできません。これは、表示されるエラーメッセージの説明です。
ウィキペディアの Same Origin policy ページは、そのセキュリティ対策に関する情報を提供します。
一言で言えば、このポリシーは、同じサイトからのページで実行されるスクリプトが特定の制限なしに互いのメソッドとプロパティにアクセスすることを許可しますが、異なるサイトのページ間でほとんどのメソッドとプロパティへのアクセスを防ぎます。
データの機密性または整合性の損失を防ぐために、無関係なサイトによって提供されるコンテンツ間の厳密な分離をクライアント側で維持する必要があります。
リファラーを使用する代わりに、window.postMessage
を実装して、ドメイン間でiframe /ウィンドウ間で通信できます。
window.parentに投稿すると、parentがURLを返します。
これは機能しますが、非同期通信が必要です。
同期メソッドが必要な場合は、非同期メソッドの周りに同期ラッパーを作成する必要があります。
<!DOCTYPE html>
<html lang="en">
<head>
<meta http-equiv="content-type" content="text/html; charset=utf-8" />
<title></title>
<!--
<link rel="shortcut icon" href="/favicon.ico">
<link rel="start" href="http://benalman.com/" title="Home">
<link rel="stylesheet" type="text/css" href="/code/php/multi_file.php?m=benalman_css">
<script type="text/javascript" src="/js/mt.js"></script>
-->
<script type="text/javascript">
// What browsers support the window.postMessage call now?
// IE8 does not allow postMessage across windows/tabs
// FF3+, IE8+, Chrome, Safari(5?), Opera10+
function SendMessage()
{
var win = document.getElementById("ifrmChild").contentWindow;
// http://robertnyman.com/2010/03/18/postmessage-in-html5-to-send-messages-between-windows-and-iframes/
// http://stackoverflow.com/questions/16072902/dom-exception-12-for-window-postmessage
// Specify Origin. Should be a domain or a wildcard "*"
if (win == null || !window['postMessage'])
alert("oh crap");
else
win.postMessage("hello", "*");
//alert("lol");
}
function ReceiveMessage(evt) {
var message;
//if (evt.Origin !== "http://robertnyman.com")
if (false) {
message = 'You ("' + evt.Origin + '") are not worthy';
}
else {
message = 'I got "' + evt.data + '" from "' + evt.Origin + '"';
}
var ta = document.getElementById("taRecvMessage");
if (ta == null)
alert(message);
else
document.getElementById("taRecvMessage").innerHTML = message;
//evt.source.postMessage("thanks, got it ;)", event.Origin);
} // End Function ReceiveMessage
if (!window['postMessage'])
alert("oh crap");
else {
if (window.addEventListener) {
//alert("standards-compliant");
// For standards-compliant web browsers (ie9+)
window.addEventListener("message", ReceiveMessage, false);
}
else {
//alert("not standards-compliant (ie8)");
window.attachEvent("onmessage", ReceiveMessage);
}
}
</script>
</head>
<body>
<iframe id="ifrmChild" src="child.htm" frameborder="0" width="500" height="200" ></iframe>
<br />
<input type="button" value="Test" onclick="SendMessage();" />
</body>
</html>
Child.htm
<!DOCTYPE html>
<html lang="en">
<head>
<meta http-equiv="content-type" content="text/html; charset=utf-8" />
<title></title>
<!--
<link rel="shortcut icon" href="/favicon.ico">
<link rel="start" href="http://benalman.com/" title="Home">
<link rel="stylesheet" type="text/css" href="/code/php/multi_file.php?m=benalman_css">
<script type="text/javascript" src="/js/mt.js"></script>
-->
<script type="text/javascript">
/*
// Opera 9 supports document.postMessage()
// document is wrong
window.addEventListener("message", function (e) {
//document.getElementById("test").textContent = ;
alert(
e.domain + " said: " + e.data
);
}, false);
*/
// https://developer.mozilla.org/en-US/docs/Web/API/window.postMessage
// http://ejohn.org/blog/cross-window-messaging/
// http://benalman.com/projects/jquery-postmessage-plugin/
// http://benalman.com/code/projects/jquery-postmessage/docs/files/jquery-ba-postmessage-js.html
// .data – A string holding the message passed from the other window.
// .domain (origin?) – The domain name of the window that sent the message.
// .uri – The full URI for the window that sent the message.
// .source – A reference to the window object of the window that sent the message.
function ReceiveMessage(evt) {
var message;
//if (evt.Origin !== "http://robertnyman.com")
if(false)
{
message = 'You ("' + evt.Origin + '") are not worthy';
}
else
{
message = 'I got "' + evt.data + '" from "' + evt.Origin + '"';
}
//alert(evt.source.location.href)
var ta = document.getElementById("taRecvMessage");
if(ta == null)
alert(message);
else
document.getElementById("taRecvMessage").innerHTML = message;
// http://javascript.info/tutorial/cross-window-messaging-with-postmessage
//evt.source.postMessage("thanks, got it", evt.Origin);
evt.source.postMessage("thanks, got it", "*");
} // End Function ReceiveMessage
if (!window['postMessage'])
alert("oh crap");
else {
if (window.addEventListener) {
//alert("standards-compliant");
// For standards-compliant web browsers (ie9+)
window.addEventListener("message", ReceiveMessage, false);
}
else {
//alert("not standards-compliant (ie8)");
window.attachEvent("onmessage", ReceiveMessage);
}
}
</script>
</head>
<body style="background-color: gray;">
<h1>Test</h1>
<textarea id="taRecvMessage" rows="20" cols="20" ></textarea>
</body>
</html>
いくつかのオプションがあります:
含まれているページとiframe
の両方で同じものにドメインをスコープします(document.domainを参照)。そうすると、それらは「同じ起源」の制約に拘束されなくなります。
cross-domain
通信には、すべてのHTML5ブラウザーでサポートされているpostMessageを使用します。
ここで良い記事: iframeとのクロスドメイン通信
また、両方のフレームで同じようにdocument.domainを直接設定できます(偶数
document.domain = document.domain;
ポートをnullにリセットするため、コードには意味があります)が、このトリックは汎用ではありません。