Facebook 页面 iframe 选项卡 - 表单未出现
我在 Facebook 页面上有一个表格。在这里看到: http://on.fb.me/ocsqMR
这是一个 iframe 选项卡,但形式底部没有渲染。当使用IE8或9时,该表单不会出现。当使用 chrome、firefox 或 safari 时,确实会出现该表单。使用 Chrome,当我检查元素时我可以看到它,但它在那里但不可见。
有想法吗?
I have a form on a facebook page. seen here: http://on.fb.me/ocsqMR
It is an iframe tab but the form at the bottom is not rendering. When using IE8 or 9, the form does not appear. When using chrome, firefox, or safari, the form does appear. Using chrome I can see it when I do inspect element but it's there but not visible.
Ideas?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
查看页面的源代码,您需要进行一些更改和添加。
确保为页面声明 DOCTYPE。
http://www.w3.org/QA/2002/04 /valid-dtd-list.html
接下来,从 body 标记中删除 onLoad 属性:
此外,您还需要更新此代码:
确保您使用的是 https://developers.facebook.com/apps 中的应用 ID应用程序。
您还需要确保 OAuth 属性在您的调用中。
下面是它的外观示例:
Looking at the source code for your page you need to make a few changes and additions.
Make sure you declare a DOCTYPE for the page.
http://www.w3.org/QA/2002/04/valid-dtd-list.html
Next, remove the onLoad attribute from the body tag:
And also, you'll need to update this code:
Make sure you're using the app ID from https://developers.facebook.com/apps for your app.
You'll also want to make sure the OAuth attribute is in your call.
Here is an example of how it should look: