调用此函数后,toDistance.php会运行吗?似乎没有调用Distance.php。感谢
function myAjax(volunteerDist, jid){
$.ajax({
type:'POST',
url: 'toDistance.php',
data : ({
distance:volunteerDist,
id:jid
}),
success: function(){
alert('worked');
},
error :function(jqXHR, textStatus, errorThrown) {
alert(errorThrown);
},
complete : function(){
alert('thanks');
}
});
答案 0 :(得分:1)
你是否通过对你的成功函数进行论证来尝试?试试这段代码。
function myAjax(volunteerDist, jid){
$.ajax({
type:'POST',
url: 'toDistance.php',
success: function( data ){
///CHECK UR UPCOMING DATA
alert(data.jid);
alert('worked');
},
error :function(jqXHR, textStatus, errorThrown) {
alert(errorThrown);
},
complete : function(){
alert('thanks');
}
});
答案 1 :(得分:0)
调用此函数后,toDistance.php会运行吗?
如果数据参数是服务器期望得到的,是。
使用firebug
,检查您的请求发生了什么,并停止猜测......
答案 2 :(得分:0)
似乎没问题。尝试使用FIddler跟踪网络流量,并检查是否调用了脚本和参数。
如果您正在使用Safari,Chrome或Firefox进行调试,则可以记录流量。 检查POST变量,脚本位置等。