0

我从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 ( ) 

我做错了什么还是我错过了什么?

4

1 回答 1

2

你的错字有字面错误

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

应该改为

$.ajax({
 url:'../controllers/aj_del_edit_word.php',
 type:"POST",
于 2013-06-13T13:22:49.630 回答