AJAX将空数组发送给PHP

时间:2013-06-13 13:20:56

标签: php ajax

我从input text提交的onchange事件中调用了以下ajax函数:

    $.ajax({
    url:'../controllers/aj_del_edit_word.php',
    tyep:"Post",
    data:{act :'dele', newWord : q, wordtype : w[0], wordref : w[1]},
    success: function(resp){
        if(resp==="true"){
            y.textContent=resp;
            $('#err3').text("word updated");
        }
        else{
            $('#err3').text(resp);
        }

    },
    error: function(){
        $('#err3').text("Epic Fail");
    }
});

aj_del_edit_word.php仅包含此代码(用于调试目的)

    print_r($_POST);
exit();

,输出为:

Array ( ) 

我做错了什么或者我错过了什么?

1 个答案:

答案 0 :(得分:2)

你的错字中有字面错误

$.ajax({
url:'../controllers/aj_del_edit_word.php',
tyep:"Post",'

应改为

$.ajax({
 url:'../controllers/aj_del_edit_word.php',
 type:"POST",