我b.html
在登录后将用户从 a.html 重定向到页面。页面上有一个Select Images
带有“ disabled
”属性的文件选择按钮“” b.html
,我只想在FB登录后启用。下面是我的代码。
function fblogin(){
FB.login(function(response) {
if (response.status == 'connected') {
login();
} else {
//window.location.reload();
}
}, {scope:'email,publish_stream'});
return false;
}
function login() {
window.location = "b.html";
document.getElementById('uploadbtn').removeAttribute('disabled');
document.getElementById("genPNG").attr('disabled','enabled');
document.getElementById("genJPG").removeAttribute('disabled');
}
上面的代码没有运气,所以我放了
document.getElementById('uploadbtn').removeAttribute('disabled');
document.getElementById("genPNG").attr('disabled','enabled');
document.getElementById("genJPG").removeAttribute('disabled');
在b.html
页面上。我怎样才能让它按我想要的方式工作?任何帮助深表感谢。提前致谢。