Facebook IFrame选项卡调整大小修复

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Facebook IFrame选项卡调整大小修复相关的知识,希望对你有一定的参考价值。

This script will handle any vertical resizing issues with a Facebook IFrame tab application, such as the resizing of the frame when elements expand, such as a Facebook Comments plugin. It uses the "FB.Canvas.setAutoResize" method from the Facebook javascript SDK, so that must be initialized with a Facebook Application ID; for more information, see http://developers.facebook.com/docs/reference/javascript/
  1. (function() {
  2. FB.Canvas.setAutoResize();
  3. document.body.addEventListener('onresize', 'FB.Canvas.setAutoResize');
  4. })();

以上是关于Facebook IFrame选项卡调整大小修复的主要内容,如果未能解决你的问题,请参考以下文章