我是AJAX的新手并尝试实现JQUERY ajax post方法。在这里,我通过AJAX将数据发送到另一个URL。一切正常,api获取所有数据,但成功事件在我的代码中不起作用。我试图提醒响应,但没有得到任何东西。请帮忙。
<script type="text/javascript">
if (agent_id == "45") {
$.ajax({
type: "POST",
dataType: "TEXT",
url: "http://pqrst.com/pqr/api/api.php",
data: 'task='+ task+'&name='+name+'&emailid='+emailid+'&city='+city+'&country_phonecode='+country_phonecode+'&phone='+phone,
async: false,
success: function (response) {
alert(response);
//window.location = "http://lmno.com/thanks.php";
}
});
}
else {
window.location = "http://lmno.com/thanks1.php";
}
</script>