我正在使用ajax()
的jquery。我正在向我的table
添加数据,因此数据已成功添加,但我无法从我指定的URL
获得响应。问题是错误:函数总是被调用,但我在浏览器中获取状态代码= 200,我的json
数据也被添加到数据库中并且成功:function()< - 永远不会被召唤
$("#add_detail").on('click',function(){
//alert("cd");
$.ajax({
type:'POST',
url:'http://www.------',
dataType: "json",
data:{
gym_name:$gym_name.val(),
plan_type:$plan_type.val(),
duration:$duration.val(),
amount:$amount.val()
},
async:false,
success:function(){
alert("Success");
}
,
error:function(data, msg){
alert(msg);
}
});
});
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
<button id="add_detail">Click here</button>