0

我在 HTML 页面上获得了 Facebook like 按钮的代码,直接取自 FB 开发者网站:

<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml" xmlns:fb="http://ogp.me/ns/fb#">
<head>
<meta http-equiv="Content-Type" content="application/xhtml+xml; charset=UTF-8" />
<title>FB Like button test</title>
</head>
<body>
<div id="fb-root"></div>
<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>
<fb:like href="http://developers.facebook.com/docs/reference/plugins/like" send="false" layout="button_count" width="90" show_faces="true"></fb:like>
</body>
</html>

当我在 Firefox 或其他非 IE 浏览器上查看时,我看到一个看起来很正常的 Like 按钮,如下所示:

{Like} <[1.5m]

但是,当我在 IE8 上查看同一页面时,它没有显示点赞数,它似乎忽略了width="90",并且我最终得到了一个像这样的长字符串:

{Like} Be the first of your friends to like this.

这是怎么回事?

4

0 回答 0