cross-domain-events:类似事件的 api,用于 postMessage 在跨域框架之间发送对象

时间:2024-06-30 22:45:14
【文件属性】:

文件名称:cross-domain-events:类似事件的 api,用于 postMessage 在跨域框架之间发送对象

文件大小:12KB

文件格式:ZIP

更新时间:2024-06-30 22:45:14

platform-frontend JavaScript

跨域事件 用于跨域通信的 postMessage 类事件接口。 postMessage 在 Internet Explorer 8 中实现,但仅支持发送文本字符串。 现代浏览器可以发送对象,但如果您想监听不同类型的对象,您必须实现自己的委托。 例子 // notify parent about page size xde.sendTo(window.top, "resize", { width: iframe.clientWidth, height: iframe.clientHeight }); // parent page xde.on("resize", function (evt) { var iframe = document.getElementById("theiframe"); iframe.style.width = evt.data.width; ifra


【文件预览】:
cross-domain-events-master
----.gitignore(31B)
----karma.conf.js(2KB)
----README.md(1KB)
----.tern-project(121B)
----test()
--------fixtures()
--------helpers.test.js(1KB)
--------helpers()
--------xde.test.js(12KB)
----LICENSE(1KB)
----.jshintrc(65B)
----package.json(1KB)
----ci-browsers.js(1KB)
----.travis.yml(453B)
----.editorconfig(173B)
----lib()
--------xde.js(3KB)

网友评论