gpt4 book ai didi

internet-explorer-8 - 仅 IE8 : Facebook Like Box Not Displaying

转载 作者:行者123 更新时间:2023-12-05 01:26:56 27 4
gpt4 key购买 nike

所以我和许多其他人一样遇到了一个问题:Facebook Like Box 没有在 IE8 中播放(IE7 OK)。我发现了很多关于那个的帖子,尝试了所有解决方案但没有成功......IE8 消息:FB.FBXML 为空或不是对象

注意:有一个函数可以处理 FB Like Box 的大小调整。

这是我的 HTML5 代码:

<!doctype html>
<!--[if IE 8]> <html class="no-js ie8 oldie" lang="fr" xmlns="http://www.w3.org/1999/xhtml" xmlns:og="http://opengraphprotocol.org/schema/" xmlns:fb="http://www.facebook.com/2008/fbml"><![endif]-->
<!--[if gt IE 8]><!--> <html class="no-js" lang="fr"> <!--<![endif]-->
<head>
...
<script src="http://connect.facebook.net/en_US/all.js#xfbml=1"></script>
</head>
<body>
...
<article>
<div class="row" id="content">
<div class="twelvecol last">
<div id="fb-root"></div>
<div class="fb-like-box" data-href="http://www.facebook.com/divstudio" data-width="1140" data-show-faces="true" data-stream="true" data-header="false"></div>
</div>
</div>
</article>
...

<script>
$(document).ready(function(){
var contentwidth = $('#content').width();
$('.fb-like-box').attr('data-width', contentwidth - '40');
FB.FBXML.parse(document.getElementsByClassName('.fb-like-box'));
});
</script>

<script>(function(d, s, id) {
var js, fjs = d.getElementsByTagName(s)[0];
if (d.getElementById(id)) {return;}
js = d.createElement(s); js.id = id;
js.src = "//connect.facebook.net/en_US/all.js#xfbml=1";
fjs.parentNode.insertBefore(js, fjs);
}(document, 'script', 'facebook-jssdk'));</script>
</body>
</html>

有什么想法吗?

网站:http://www.divstudio.fr/emergenza/jazz/actu.html

非常感谢

最佳答案

您应该将这些行添加到标记中。

xmlns="http://www.w3.org/1999/xhtml" xmlns:og="http://opengraphprotocol.org/schema/"
xmlns:fb="http://www.facebook.com/2008/fbml"

如果标签中已经有任何属性,请保持原样。这样开始的html标签就变成了这样。

<html xmlns="http://www.w3.org/1999/xhtml" xmlns:og="http://opengraphprotocol.org/schema/" xmlns:fb="http://www.facebook.com/2008/fbml" lang="<?php print $language->language ?>" xml:lang="<?php print $language->language ?>" dir="<?php print $language->dir ?>">

如果启用了缓存,请清除缓存。它应该在 IE-8 中工作

关于internet-explorer-8 - 仅 IE8 : Facebook Like Box Not Displaying,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7825800/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com