<div id="cd-signup">
<!-- sign up form -->
<form name="joinform" class="cd-form" id="joinform" method="post">
<input type="hidden" name="act" value="register">
<div class="modal-dialog">
<div class="modal-content">
<div class="modal-header">
.....
....
function testAPI() {
console.log('Welcome! Fetching your information.... ');
FB.api('/me?fields=id,name,email,permissions', function(response) {
console.log('Successfulllll login for: ' + response.name);
name=response.name;
alert(name+"===="+response.email);
//here I want to call that Div tag
});
}
现在我正在使用Facebook API,当我完成Facebook登录时,我想打电话给注册表。
请帮帮我。
答案 0 :(得分:0)
定义&#39;调用div标签&#39;?您可以通过致电$('div').focus();
如果您想要打开模态对话框,请确保页面上有引导程序JS,您可以调用$('#modalID').modal('show');
但请确保您正在调用的ID上还有class="modal"
。