Contents

代码如下:

1
2
3
4
5
6
7
8
9
(function () {
window.iframeResizePostMessage = function (name) {
if (window.parent) {
var height = document.documentElement.scrollHeight || document.body.scrollHeight;
var width = document.documentElement.scrollWidth || document.body.scrollWidth;
window.parent.postMessage(JSON.stringify({ 'type': 'iframe-resize', name: name || '', height: height, width: width }), '*'); // name各业务组件自己定义
}
}
})();
Contents