JavaScript 中的 postMessage API 是一個強大的工具,用於安全地實作不同視窗或 iframe 之間的跨來源通訊。它通常用於在父元件和嵌入式 iframe 之間交換數據,即使文件來自不同的來源,也可以實現受控互動。
這是使用 postMessage 在 iframe 和父組件之間發送資料的實際範例:
// Parent Component const iframe = document.getElementById("myIframe"); // Send a message to the iframe iframe.contentWindow.postMessage("Hello from parent", "https://iframe-domain.here"); // Listen the message window.addEventListener("message", (event) => { if (event.origin === "https://iframe-domain.here") { console.log("Message from iframe:", event.data); } }, false); // Iframe Component // Send a message to the parent window.parent.postMessage("Hello from iframe", "https://parent-domain.here");
以上是如何使用 JavaScript 啟用瀏覽器視窗之間的通信的詳細內容。更多資訊請關注PHP中文網其他相關文章!