FB.ui 无法在 IE 上运行
我迫切需要帮助,自从我尝试解决这个问题以来已经一周了,我在 FireFox 和 Chrome 中调用 FB.ui 没有任何问题,但是当我尝试使用 IE 时,它没有出现 Facebook 对话框。实际上代码是这样的:
function inviteFriends(myMessage) {
var obj = {
method: 'apprequests',
message: myMessage,
icon: 'http://www.mywebsite.com/logo.jpg',
data: 'tracking information for the user'
};
FB.ui(obj, callbackInvite);
}
var callbackInvite = function(response) {
document["flashContent"].InvitedFriends(response);
}
请,欢迎任何帮助
I need help desesperately, it's been a week since I'm stuck trying to resolve this problem, I call FB.ui in FireFox and Chrome without any problem, but when I try with IE it doesn't appear the Facebook dialog. Actually the code is like this:
function inviteFriends(myMessage) {
var obj = {
method: 'apprequests',
message: myMessage,
icon: 'http://www.mywebsite.com/logo.jpg',
data: 'tracking information for the user'
};
FB.ui(obj, callbackInvite);
}
var callbackInvite = function(response) {
document["flashContent"].InvitedFriends(response);
}
Please, any help will be welcomed
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
可以尝试一下:
displayMode =“popup”;
看起来 IE 和 FB.ui http://bugs.developers 存在错误
。 facebook.net/show_bug.cgi?id=17565
Might try this out:
displayMode = "popup";
Looks like there's a bug with IE and FB.ui
http://bugs.developers.facebook.net/show_bug.cgi?id=17565