var id = $("input#user_id").val();
if (id != "") {
$.post("function.php?act=check_id", { id: id }, function(data) {
if (data == "error") {
return false;
}
});
//some other codes going on here....
正如你可以看到我試圖打破從ajax後數據來的功能,但它繼續其他代碼。我的意思是return false
沒有打破它。無法打破jQuery的功能,當有一個AJAX後
我在哪裏錯了?
感謝
我可以做只是爲了特定的帖子或頁面中所有的帖子? – 2010-11-24 18:06:36
這太奇怪了。 ... [A] jax呼叫是同步的。 – scottm 2010-11-24 18:07:38