0

我在使用 Jquery $.post 来检查数据而不刷新页面并在页面 div 上打印出任何错误时遇到问题

我不能标头(位置);如果所有数据都正确,则转到下一页。

   <script type="text/javascript">
        function get(){
            $('#error').hide();

            $.post('./parts/signup_data.php', 
                        {firstname:signup.firstname.value, lastname:signup.lastname.value, 
                        email:signup.email.value, re_email:signup.re_email.value, 
                        password:signup.password.value, re_password:signup.re_password.value,
                        age:signup.age.value, 
                        gender:$('input:radio[name=gender]:checked').val(),
                        },      
                        function(output){$('#error').html(output).fadeIn(50);}
                  )             
        }      
    </script>

页面将在不刷新的情况下检查所有数据并在 div 标签上打印错误

如果所有数据都正确。它将数据插入数据库

mysql_query("INSERT INTO temp_user (email, password, firstname, lastname, age, gender, date, confirm_code)VALUES ('$email','$password','$firstname', '$lastname', '$age', '$gender', '$date', '$confirm_code')");

header('Location:confirm.php');

问题是页面没有转到下一页。它在 div 标签中打印出所有页面的信息

4

1 回答 1

0

您需要将某些内容(例如,JSON 对象)发送回 Javascript 代码,告诉它要转到哪个页面。

然后,成功回调中的 Javascript 代码将检查来自服务器的结果,以查看它是 URL 还是错误消息,并根据需要设置location.href或显示消息。

于 2013-02-05T04:08:28.370 回答