我正在使用 Facebook 应用程序,而 Facebook 应用程序需要将您的应用程序放在 iFrame 中,一切都很好,除了如果创建的 iframe 是静态的并且我想更改 iFrame 的高度,我尝试了以下操作:
jQuery(parent.document.body.getElementsByTagName('iframe')).load(function() {
this.style.height =
this.contentWindow.document.body.offsetHeight + 'px';
});
但是当试图访问父文档时
parent.document
发生错误
Unsafe JavaScript attempt to access frame with URL
http://www.facebook.com/somthing/app_100550322222338 from frame with URL
http://z.me/facebook/whatsnew. Domains, protocols and ports must match.
还有其他解决方案吗??