我正在尝试通过 IntelXDK 开发的应用程序中的 iframe 登录 Facebook。问题是页面超出了 iframe。在我的应用程序中
<iframe style="overflow:hidden;height:100%;width:100%; position:fixed; margin-left:-10px;" height="100%" width="100%" frameborder="0" src="http://...."></iframe>
在我的页面中,我有这个:
var paramsLocation=window.location.toString().indexOf('?');
var params="";
if (paramsLocation>=0)
params=window.location.toString().slice(paramsLocation);
top.location = 'https://graph.facebook.com/oauth/authorize?client_id=MYID&redirect_uri=http://MYURL';
facebook登录后如何获得留在iframe中?