有人注意到他们的登录按钮有问题吗?我的代码正在运行,突然他们今天开始表现得很奇怪,我没有修改任何代码。这是我的代码,可以帮助您调试我可能出现的问题吗?
我在标题上有这个:
<div id="fb-root"></div>
<script>
window.fbAsyncInit = function() {
FB.init({
appId: '<?php echo $sofa['fbappid']; ?>',
status: false,
cookie: true,
xfbml: true,
oauth: true
});
};
(function() {
var e = document.createElement('script'); e.async = true;
e.src = document.location.protocol +
'//connect.facebook.net/en_US/all.js';
document.getElementById('fb-root').appendChild(e);
}());
function Facebook_login () {
$("p.form-result").empty();
FB.getLoginStatus(function(response) {
if (response.status === 'connected') {
$.ajax({
url: '<?php bloginfo('template_directory'); ?>/ajax/fbconnect.php',
type: 'POST',
dataType: 'json',
success: function(data){
$('.loading').remove();
$('input:submit').attr("disabled", false);
if (data.status) {
$("p.form-result").html('<span class="success">' + data.message + '</span>');
window.setTimeout(function(){location.reload()},3000);
}
}
});
}
});
};
</script>
我有这个我的按钮(facebook连接)
<div class="form-fbconnect"><div class="fb-login-button" onlogin="Facebook_login()" scope="email"><?php _e('Connect with Facebook','sofa'); ?></div></div>
看起来不对劲。按钮以有趣的方式加载,即使登录用户也不像之前那样工作。发生了什么事?
提前致谢。