<a href="javascript:;" onclick="login(); return false;"><img src="images/ie.jpg"/></a>
我的链接不是火登录();功能。ie7 或某些 firefox 上的链接无效。
function login(){
FB.login(function(response){
if(response.authResponse){
FB.api('/me',function(response){
window.location.href ="anasayfa.php?fname="+ response.name+"&email="+response.email+"&username="+response.username+"&gender="+response.gender+"&city="+response.hometown.name+"&location="+response.location.name+"&birthday="+response.birthday+"&id="+response.id+"&rStatus="+response.relationship_status;
});
我在我的 facebook 应用程序上使用这些代码。许多用户使用应用程序。清楚地。但有些用户不使用该应用程序。我在 ie 测试仪上测试过,我看到链接在 ie7 上不起作用。
谢谢你的帮助。