我的回调函数将数据作为文本返回,但我的回调函数无法识别它并始终执行 else 条件。
这是我的“调用”参数
$.post('ajaxupdate.php', data, handleAjaxResponse, 'text');
我的回调函数是:
function handleAjaxResponse(response) {
if (response == 'worked') {
alert("hi");
}else{
console.log(response);
};
} // End of handleAjaxResponse() function.
我的 php echo
es 是关于 jQuery 成功的字符串代码。