我不明白'返回false'的目的。
我想知道爲什麼我看不到彈出消息如果我不在ajax函數的末尾添加'return false'。
有誰能告訴我嗎?
我在windows下使用adt + Phonegap。
爲什麼要在Phonegap(jquery ajax)中添加返回false?
$("button").click(function() {
$.ajax({
type: 'GET',
url: 'http://www.google.com',
success: function(data){
console.log(data);
alert('ok');
},
error: function(){
alert('false');
}
});
return false;
}
});