根據GET
請求的結果,是否有退出函數的方法。ajax調用中的jquery退出函數
例如,在下面的功能,hi
,如果GET
結果data
,其中data === '1'
,我想退出該功能。
function hi() {
$.ajax({
url: "/shop/haveItem",
type: "GET",
success: function (data) {
if (data == '1') {
// exit hi() function
}
}
});
// some executable code when data is not '1'
}
我該如何去做到這一點?
你的代碼也使用「async:false」,:) 請編輯它。 – 2010-12-23 06:33:40