php – Jquery .ajax method =“post”,但$_POST为空

前端之家收集整理的这篇文章主要介绍了php – Jquery .ajax method =“post”,但$_POST为空前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
$就({
方法:“post”
,url:“save.PHP
,data:“id = 453& action = test”
,beforeSend:function(){
},complete: function(){ 
    },success: function(html){ 
        $("#mydiv").append(html);        
    }
});

我已经将方法类型设置为post,但是在Save.PHP中,我只是在$_GET或$_REQUEST中获取值,但不能在$_POST中获取值.

我的表单看起来像

<form method="post" id="myform" action="save.PHP">

它不工作,环顾四周,并在Google上尝试添加enctype

<form method="post" id="myform" action="save.PHP" enctype="application/x-www-form-urlencoded">

但仍然$_POST为空?

我该如何让它工作?谢谢.

而不是方法:“post”你需要使用type:“POST”

所以这应该工作没有任何改变你的表单HTML:

$.ajax({
    type: "POST",url: "save.PHP",data: "id=453&action=test",beforeSend: function(){

    },success: function(html){ 
        $("#mydiv").append(html);        
    }
});

不知道为什么它不工作,但这对我有用:

save.PHP

<?PHP
print_r($_POST);

file.html

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en">
<head>
    <title>Example</title>

    <script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.3.2/jquery.min.js"></script>
    <script type="text/javascript">
        $(function() {
            $('input').click(function() {
                $.ajax({
                    type: "POST",beforeSend: function(){

                    },complete: function(){ 
                    },success: function(html){ 
                        alert(html);        
                    }
                });
            });
        });
    </script>
</head>

<body>
    <div id="main"><input type="button" value="Click me"></div>
</body>
</html>

你的错误必须在别的地方.

原文链接:https://www.f2er.com/php/132570.html

猜你在找的PHP相关文章