我想在用户通过身份验证时取消隐藏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!");}
}});}`