使用ajax函数取消隐藏div

时间:2015-05-30 13:30:45

标签: html css ajax jquery-mobile

我想在用户通过身份验证时取消隐藏hideEvent div,我可以将他重定向到主页,但我仍然无法取消隐藏div。有谁可以帮助我吗。

function loginUsers()
{
$.ajax({type:'POST',url:'http://localhost/PHP/login.php',
data: $(this),
cache: false,
success: function(data){if(data[1] == "P"){window.location =     "http://localhost/index.html#homepg";$('#hideEvent').toggle();}else{alert("Wrong Email and Password!");}   
}});}`

0 个答案:

没有答案