似乎我必须在我的脸书连接按钮出现在ie7 / 8,另一方面,并在另一方面有正确的元素定位之间做出选择。
如果我用
开始我的文档<!doctype html xmlns:fb="http://www.facebook.com/2008/fbml">
就页面显示和元素定位而言,一切都很好。但是,要显示fb登录按钮,我需要删除“!doctype”,如果我这样做,页面显示定位和布局就会搞砸。
如何在不为ie7 / ie8
编写特殊CSS的情况下显示fb按钮其他相关信息:
实际的按钮代码是:
<fb:login-button>Connect</fb:login-button>
关闭之前我的身体标签:
<div id="fb-root"></div>
<script src="https://connect.facebook.net/en_US/all.js"></script>
<script>
FB.init({
appId:'<?php echo Configure::read('facebook.fb_api_key'); ?>',
cookie:true,
status:true,
xfbml:true
});
FB.Event.subscribe('auth.login', function(response) {
window.location.reload();
});
答案 0 :(得分:1)
就这样做:
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml" xmlns:fb="http://www.facebook.com/2008/fbml">