我从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 ( )
我做错了什么或者我错过了什么?
答案 0 :(得分:2)
你的错字中有字面错误
$.ajax({
url:'../controllers/aj_del_edit_word.php',
tyep:"Post",'
应改为
$.ajax({
url:'../controllers/aj_del_edit_word.php',
type:"POST",