# iframe-message-js **Repository Path**: lwj1426282929/iframe-message ## Basic Information - **Project Name**: iframe-message-js - **Description**: iframe通信方法 - **Primary Language**: JavaScript - **License**: MIT - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 2 - **Forks**: 0 - **Created**: 2023-01-11 - **Last Updated**: 2023-12-11 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # iframe-message-js #### iframe 父子窗口通信工具 #### 安装 ##### npm ```bash npm i iframe-message-js ``` ##### browser ```js ``` #### 使用 ```js import iframeMessage from "iframe-message-js"; // 发送消息 iframeMessage.dispatch("ADD_PAGE", "pageInfo"); // 接收消息 iframeMessage.on("ADD_PAGE", function (data) { console.log(data); // "pageInfo" }); ``` | 方法名 | 说明 | 参数 | 返回值 | | -------- | -------- | ----------------------------- | ------ | | dispatch | 发送消息 | (eventType, data) | - | | on | 接收消息 | (eventType, callback(data)) | - |