Firefoxのアドオン開発で問題が発生しました。
[症状]:Firefoxアドオンバーのパネルページからメッセージを受信できません。メッセージはpanel.htmlのiframeから送信されます。
これが私のコードです:
/ *ファイル[popup.html]*///本文にiframe要素を追加します。
iframe src="http://localhost/hello.html"
/ *ファイル[popup.js]に*///リスナーを追加します
window.addEventListener("message",
function(event) {
console.log("popupJS Receive Event from WebPage(" + event.origin);
console.log(event);
//alert(event);
});
/ *リモートページhello.html* ///をクリックしてメッセージを送信します。 強調されたテキスト
window.postMessage({ type: "FROM_PAGE", text: "Hello from the webpage!" }, "http://dicrectpass.com");
===== >>しかし、それでもiframeからメッセージを受信できません!! なんで?