日期:2014-05-16 浏览次数:20406 次
function 函数名() {
……
$.post("handle/ajax.php",{imgck:imgck},function(res){
if (res == "0") {
#中断代码继续执行#
}
});
……
}
把余下的代码写成另一个函数
function 函数名2() {
........................
...........................
}
function 函数名() {
……
$.post("handle/ajax.php",{imgck:imgck},function(res){
if (res != "0") {
函数名2() ;
}
});
}