我正在为 iphone 和 android 制作一个 phonegap 应用程序。我的代码在浏览器中运行良好,但是当我尝试使用 phonegap 时,手机显示 json 结果并且不执行提交函数中的代码,这是我点击提交按钮时得到的图片: http:// i48.tinypic.com/21l1km0.png 我使用了 $ajax() 和 json.eval() 但我得到了相同的结果,
form.onsubmit = function()
{
var formData = new FormData(form);
$.ajax({
type: 'POST',
data: formData,
url: 'http://server.com',
success: function(data){
console.log("wa3 1");
alert('Your comment was successfully added');
},
error: function(){
console.log("wa3 2");
alert('There was an error adding your comment');
}
});
}