$.when( asyncEvent() ).then(
function( status ) {
alert( status + ", things are going well" );
},
function( status ) {
alert( status + ", you fail this time" );
},
function( status ) {
$( "body" ).append( status );
}
);
在这段代码中,我知道什么时候连续被解雇以检查asyncEvent的状态..什么是定期执行此操作的最佳方式..但是,我想要'当'在定期的时间间隔内执行,直到ajax调用完成..如果完成则等待或回调时不应该进行。